diff options
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_context.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index 36a1ec6c9d1..398bf8bd609 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -1170,8 +1170,10 @@ struct brw_context struct intel_mipmap_tree *stencil_mt; /* Inter-tile (page-aligned) byte offsets. */ - uint32_t depth_offset, hiz_offset, stencil_offset; - /* Intra-tile x,y offsets for drawing to depth/stencil/hiz */ + uint32_t depth_offset; + /* Intra-tile x,y offsets for drawing to combined depth-stencil. Only + * used for Gen < 6. + */ uint32_t tile_x, tile_y; } depthstencil; |