mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
i965: Bump maximum supported ES2 context version to 3.0
Since patch "i965: Validate requested GLES context version in brwCreateContext", we have been able to create ES 3.0 contexts due to the max version check. So...bump the max version. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
This commit is contained in:
parent
e4f661afc8
commit
7638ede4ce
1 changed files with 1 additions and 1 deletions
|
|
@ -1044,7 +1044,7 @@ set_max_gl_versions(struct intel_screen *screen)
|
|||
screen->max_gl_core_version = 31;
|
||||
screen->max_gl_compat_version = 30;
|
||||
screen->max_gl_es1_version = 11;
|
||||
screen->max_gl_es2_version = 20;
|
||||
screen->max_gl_es2_version = 30;
|
||||
} else {
|
||||
screen->max_gl_core_version = 0;
|
||||
screen->max_gl_compat_version = 21;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue