mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 00:38:48 +02:00
mesa/st: move intel blackhole noop enable to frontend
Reviewed-by: Kristian H. Kristensen <hoegsberg@google.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14632>
This commit is contained in:
parent
129e31cd4f
commit
e344a117af
2 changed files with 1 additions and 3 deletions
|
|
@ -1314,6 +1314,7 @@ _mesa_set_enable(struct gl_context *ctx, GLenum cap, GLboolean state)
|
|||
return;
|
||||
FLUSH_VERTICES(ctx, 0, 0);
|
||||
ctx->IntelBlackholeRender = state;
|
||||
ctx->pipe->set_frontend_noop(ctx->pipe, state);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
|||
|
|
@ -83,9 +83,6 @@ st_Enable(struct gl_context *ctx, GLenum cap)
|
|||
case GL_DEBUG_OUTPUT_SYNCHRONOUS:
|
||||
st_update_debug_callback(st);
|
||||
break;
|
||||
case GL_BLACKHOLE_RENDER_INTEL:
|
||||
st->pipe->set_frontend_noop(st->pipe, ctx->IntelBlackholeRender);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue