minor clean-ups

This commit is contained in:
Brian Paul 2005-09-04 15:03:36 +00:00
parent 0cfd4f92dd
commit d575a4c4a1
3 changed files with 3 additions and 6 deletions

View file

@ -45,9 +45,8 @@
drb->offset + \
dPriv->x * drb->cpp + \
dPriv->y * pitch); \
char *read_buf = buf; \
GLuint p; \
(void) read_buf; (void) buf; (void) p
(void) buf; (void) p

View file

@ -40,9 +40,8 @@
GLuint pitch = drb->pitch; \
GLuint height = dPriv->h; \
GLubyte *buf = drb->Base.Data + dPriv->x * cpp + dPriv->y * pitch; \
GLubyte *read_buf = buf; \
GLuint p; \
(void) p; (void) read_buf;
(void) p
#define LOCAL_DEPTH_VARS \
savageContextPtr imesa = SAVAGE_CONTEXT(ctx); \

View file

@ -47,9 +47,8 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
driRenderbuffer *drb = (driRenderbuffer *) rb; \
GLuint pitch = drb->pitch; \
char *buf = (char *)(smesa->FbBase + drb->offset); \
char *read_buf = buf; \
GLuint p; \
(void) read_buf; (void) buf; (void) p
(void) buf; (void) p
#define LOCAL_DEPTH_VARS \
sisContextPtr smesa = SIS_CONTEXT(ctx); \