mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 15:10:12 +01:00
glsl: Fix use of uninitialized values in _mesa_glsl_parse_state ctor.
This has probably existed since e5e34ab18e or so.
NOTE: This is a candidate for the 7.9 and 7.10 branches.
This commit is contained in:
parent
cfd8d45ccd
commit
dfdb9fda82
1 changed files with 2 additions and 0 deletions
|
|
@ -152,6 +152,8 @@ read_builtins(GLenum target, const char *protos, const char **functions, unsigne
|
|||
{
|
||||
struct gl_context fakeCtx;
|
||||
fakeCtx.API = API_OPENGL;
|
||||
fakeCtx.Const.GLSLVersion = 130;
|
||||
fakeCtx.Extensions.ARB_ES2_compatibility = true;
|
||||
gl_shader *sh = _mesa_new_shader(NULL, 0, target);
|
||||
struct _mesa_glsl_parse_state *st =
|
||||
new(sh) _mesa_glsl_parse_state(&fakeCtx, target, sh);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue