|
From: Brian P. <br...@us...> - 2007-06-11 19:30:20
|
CVSROOT: /cvsroot/chromium
Module name: cr
Repository: cr/crserverlib/
Changes by: br...@sc....(none) 07/06/11 12:30:16
Log message:
Fix a problem with glReadPixels blowing up the crserver.
Looks like a shared library/linker problem. The address of the global
cr_unpackData var was different in the unpacker and crserver code. In
the later place, it was always NULL.
Fixed by adding a new crUnpackGetDataPointer() function to return the value
of cr_unpackData. Call that instead of directly accessing the variable.
Modified files:
cr/include/:
cr_unpack.h
cr/unpacker/:
unpack_misc.c unpack.def
cr/crserverlib/:
server_readpixels.c
Revision Changes Path
1.11 +1 -0 cr/include/cr_unpack.h
1.5 +13 -0 cr/unpacker/unpack_misc.c
1.5 +1 -0 cr/unpacker/unpack.def
1.5 +2 -0 cr/crserverlib/server_readpixels.c
|