mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 13:10:10 +01:00
i965: Advertise GLSL 1.40 and TexBOs in core contexts
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
91473485fc
commit
2a33a99737
1 changed files with 9 additions and 1 deletions
|
|
@ -94,7 +94,11 @@ intelInitExtensions(struct gl_context *ctx)
|
|||
ctx->Extensions.ARB_texture_rgb10_a2ui = true;
|
||||
|
||||
if (intel->gen >= 6)
|
||||
ctx->Const.GLSLVersion = 130;
|
||||
if (ctx->API == API_OPENGL_CORE) {
|
||||
ctx->Const.GLSLVersion = 140;
|
||||
} else {
|
||||
ctx->Const.GLSLVersion = 130;
|
||||
}
|
||||
else
|
||||
ctx->Const.GLSLVersion = 120;
|
||||
_mesa_override_glsl_version(ctx);
|
||||
|
|
@ -107,6 +111,10 @@ intelInitExtensions(struct gl_context *ctx)
|
|||
ctx->Extensions.ARB_blend_func_extended = !driQueryOptionb(&intel->optionCache, "disable_blend_func_extended");
|
||||
ctx->Extensions.ARB_draw_buffers_blend = true;
|
||||
ctx->Extensions.ARB_uniform_buffer_object = true;
|
||||
|
||||
if (ctx->API == API_OPENGL_CORE) {
|
||||
ctx->Extensions.ARB_texture_buffer_object = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (intel->gen >= 5)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue