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_clip.c | |
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_clip.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_clip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_clip.c b/src/mesa/drivers/dri/i965/brw_clip.c index 4c9d5c56c12..1d2070b6f8c 100644 --- a/src/mesa/drivers/dri/i965/brw_clip.c +++ b/src/mesa/drivers/dri/i965/brw_clip.c @@ -61,7 +61,7 @@ static void compile_clip_prog( struct brw_context *brw, /* Begin the compilation: */ - brw_init_codegen(brw->intelScreen->devinfo, &c.func, mem_ctx); + brw_init_codegen(brw->screen->devinfo, &c.func, mem_ctx); c.func.single_program_flow = 1; @@ -116,7 +116,7 @@ static void compile_clip_prog( struct brw_context *brw, if (unlikely(INTEL_DEBUG & DEBUG_CLIP)) { fprintf(stderr, "clip:\n"); - brw_disassemble(brw->intelScreen->devinfo, c.func.store, + brw_disassemble(brw->screen->devinfo, c.func.store, 0, program_size, stderr); fprintf(stderr, "\n"); } |