diff options
author | Jason Ekstrand <[email protected]> | 2014-07-28 18:30:55 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2014-07-29 10:50:38 -0700 |
commit | 3ea922dd7ca773033a09068e397b34d8abd4c763 (patch) | |
tree | c12a7db8ef269c4945611123f2c0104114ccbec1 /src/mesa/main | |
parent | b12d5f0d002da40c522a95ec92429e30385dcbd6 (diff) |
main/get_hash_params: Add GL_SAMPLE_SHADING_ARB
GL_SAMPLE_SHADING is specified as a valid pname for glGet in the
GL_ARB_sample_shading extension. It seems as if we forgot to add it to the
table of pnames.
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Cc: [email protected]
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/get_hash_params.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/get_hash_params.py b/src/mesa/main/get_hash_params.py index 35d6172a3a5..ff858207b87 100644 --- a/src/mesa/main/get_hash_params.py +++ b/src/mesa/main/get_hash_params.py @@ -84,6 +84,7 @@ descriptor=[ [ "SAMPLES_ARB", "BUFFER_INT(Visual.samples), extra_new_buffers" ], # GL_ARB_sample_shading + [ "SAMPLE_SHADING_ARB", "CONTEXT_BOOL(Multisample.SampleShading), extra_gl40_ARB_sample_shading" ], [ "MIN_SAMPLE_SHADING_VALUE_ARB", "CONTEXT_FLOAT(Multisample.MinSampleShadingValue), extra_gl40_ARB_sample_shading" ], # GL_SGIS_generate_mipmap |