diff options
author | Ian Romanick <[email protected]> | 2011-08-25 17:51:41 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-09-09 12:01:51 -0700 |
commit | 559ed1a41d9aa0da5a61f606da2439905766f44a (patch) | |
tree | 626a849271574b5d380094f660db3b1236a71f71 /src/mesa/drivers | |
parent | 17d898d5b96809227d940768dc54cfe86070b8d0 (diff) |
dri: Silence several "warning: unused parameter"
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/common/depthtmp.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/common/depthtmp.h b/src/mesa/drivers/dri/common/depthtmp.h index 81bec9c5ffc..c6e2bb75c16 100644 --- a/src/mesa/drivers/dri/common/depthtmp.h +++ b/src/mesa/drivers/dri/common/depthtmp.h @@ -66,6 +66,8 @@ static void TAG(WriteDepthSpan)( struct gl_context *ctx, #endif } HW_WRITE_UNLOCK(); + + (void) ctx; } @@ -120,6 +122,8 @@ static void TAG(WriteMonoDepthSpan)( struct gl_context *ctx, HW_ENDCLIPLOOP(); } HW_WRITE_UNLOCK(); + + (void) ctx; } #endif @@ -168,6 +172,8 @@ static void TAG(WriteDepthPixels)( struct gl_context *ctx, #endif } HW_WRITE_UNLOCK(); + + (void) ctx; } @@ -238,6 +244,8 @@ static void TAG(ReadDepthPixels)( struct gl_context *ctx, #endif } HW_READ_UNLOCK(); + + (void) ctx; } |