mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-31 09:50:08 +01:00
i965: Enable OpenGL 3.3 and GLSL 3.30.
Everything necessary for these appears to be implemented. We'll want to add more tests to guard against bugs, but it should be functionally complete. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
cedfd79be2
commit
567445e2b9
2 changed files with 2 additions and 2 deletions
|
|
@ -126,7 +126,7 @@ intelInitExtensions(struct gl_context *ctx)
|
|||
ctx->Extensions.OES_EGL_image_external = true;
|
||||
|
||||
if (brw->gen >= 7)
|
||||
ctx->Const.GLSLVersion = 150;
|
||||
ctx->Const.GLSLVersion = 330;
|
||||
else if (brw->gen >= 6)
|
||||
ctx->Const.GLSLVersion = 140;
|
||||
else
|
||||
|
|
|
|||
|
|
@ -1187,7 +1187,7 @@ set_max_gl_versions(struct intel_screen *screen)
|
|||
|
||||
switch (screen->devinfo->gen) {
|
||||
case 7:
|
||||
psp->max_gl_core_version = 32;
|
||||
psp->max_gl_core_version = 33;
|
||||
psp->max_gl_compat_version = 30;
|
||||
psp->max_gl_es1_version = 11;
|
||||
psp->max_gl_es2_version = 30;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue