diff options
author | Emil Velikov <[email protected]> | 2017-10-24 15:21:40 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-11-16 14:06:57 +0000 |
commit | afd6a964a423c015548f0474ee4e5e1a24967fe6 (patch) | |
tree | e9685cee8ce8269cb08cdd490a5617f33c4af368 /src | |
parent | f8812931cf165760a81afb2cbc0520e3aca89f6b (diff) |
i965: remove ARB_compute_shader extension override
Checking the override was useful in the early stages of developing the
extension.
Now that everything is wired, where possible, we can drop the check.
Doing so allows us to simplify some of the related code.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index bc032dc5f69..f49ac4480af 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -348,8 +348,7 @@ brw_initialize_context_constants(struct brw_context *brw) (_mesa_is_desktop_gl(ctx) && ctx->Const.MaxComputeWorkGroupSize[0] >= 1024) || (ctx->API == API_OPENGLES2 && - ctx->Const.MaxComputeWorkGroupSize[0] >= 128) || - _mesa_extension_override_enables.ARB_compute_shader, + ctx->Const.MaxComputeWorkGroupSize[0] >= 128), }; unsigned num_stages = 0; |