diff options
author | Kenneth Graunke <[email protected]> | 2015-11-30 15:47:13 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2016-09-20 20:08:20 -0700 |
commit | 9694b23f66f4c41407289fb7d3ff25321042ef49 (patch) | |
tree | 191463d5f9a54ef0d4c49fa2d504a9e5d37486a8 /src/mesa/drivers/dri/i965/brw_context.h | |
parent | 8fec9fbb9f78c1cbc539b28cd914fe366fa7e344 (diff) |
i965: Rename intelScreen to screen.
"intelScreen" is wordy and also doesn't fit our style guidelines.
"screen" is shorter, which is nice, because we use it fairly often.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_context.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index 2c55b5edcfd..eb1df40cfe1 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -1344,7 +1344,7 @@ struct brw_context bool draw_aux_buffer_disabled[MAX_DRAW_BUFFERS]; __DRIcontext *driContext; - struct intel_screen *intelScreen; + struct intel_screen *screen; }; /*====================================================================== @@ -1361,7 +1361,7 @@ extern void intelInitClearFuncs(struct dd_function_table *functions); extern const char *const brw_vendor_string; extern const char * -brw_get_renderer_string(const struct intel_screen *intelScreen); +brw_get_renderer_string(const struct intel_screen *screen); enum { DRI_CONF_BO_REUSE_DISABLED, |