Skip to content
Snippets Groups Projects
Commit 121030ee authored by Fredrik Höglund's avatar Fredrik Höglund
Browse files

i915: Enable ARB_direct_state_access


This extension requires OpenGL 2.0, so enable it on gen3 and later.

Signed-off-by: default avatarFredrik Höglund <fredrik@kde.org>
Reviewed-by: Adam Jackson's avatarAdam Jackson <ajax@redhat.com>
parent d3368e0c
No related branches found
No related tags found
Loading
......@@ -83,6 +83,7 @@ intelInitExtensions(struct gl_context *ctx)
if (intel->gen >= 3) {
ctx->Extensions.ARB_ES2_compatibility = true;
ctx->Extensions.ARB_depth_texture = true;
ctx->Extensions.ARB_direct_state_access = true;
ctx->Extensions.ARB_fragment_program = true;
ctx->Extensions.ARB_shadow = true;
ctx->Extensions.ARB_texture_non_power_of_two = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment