diff options
author | Jason Ekstrand <[email protected]> | 2015-04-15 14:51:18 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-04-22 16:00:33 -0700 |
commit | 5cb91db619e8689c8fd45a67b57b96fc36f4ca9b (patch) | |
tree | ed5cf720dde7e51cc93e6a07b66a39ae5eda399b /src | |
parent | 61c4702489fa1694892c5ce90ccf65a5094df3e7 (diff) |
i965/fs: Remove the GL context from the generator
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.h | 1 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_generator.cpp | 11 |
2 files changed, 1 insertions, 11 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h index 24ca43ccdbe..c42907050d0 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.h +++ b/src/mesa/drivers/dri/i965/brw_fs.h @@ -639,7 +639,6 @@ private: bool patch_discard_jumps_to_fb_writes(); struct brw_context *brw; - struct gl_context *ctx; struct brw_compile *p; const void * const key; diff --git a/src/mesa/drivers/dri/i965/brw_fs_generator.cpp b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp index 3e103b21f45..539619a68b8 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_generator.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp @@ -136,8 +136,6 @@ fs_generator::fs_generator(struct brw_context *brw, runtime_check_aads_emit(runtime_check_aads_emit), debug_flag(false), stage_abbrev(stage_abbrev), mem_ctx(mem_ctx) { - ctx = &brw->ctx; - p = rzalloc(mem_ctx, struct brw_compile); brw_init_compile(brw->intelScreen->devinfo, p, mem_ctx); } @@ -2091,14 +2089,7 @@ fs_generator::generate_code(const cfg_t *cfg, int dispatch_width) break; default: - if (inst->opcode < (int) ARRAY_SIZE(opcode_descs)) { - _mesa_problem(ctx, "Unsupported opcode `%s' in %s", - opcode_descs[inst->opcode].name, stage_abbrev); - } else { - _mesa_problem(ctx, "Unsupported opcode %d in %s", inst->opcode, - stage_abbrev); - } - abort(); + unreachable("Unsupported opcode"); case SHADER_OPCODE_LOAD_PAYLOAD: unreachable("Should be lowered by lower_load_payload()"); |