diff options
author | Samuel Pitoiset <[email protected]> | 2017-06-26 14:13:01 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-06-28 10:25:13 +0200 |
commit | 836b48a8361a5e8409d0313c527ceb6800ebe870 (patch) | |
tree | a0cd81b44f7884f5352fc5b15e480147f74c049b /src/mapi | |
parent | 89510d26a998886f1cf3a3af81dd07929da8a9c9 (diff) |
mesa: add KHR_no_error support for gl*ProgramPipelines()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_direct_state_access.xml | 2 | ||||
-rw-r--r-- | src/mapi/glapi/gen/ARB_separate_shader_objects.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mapi/glapi/gen/ARB_direct_state_access.xml b/src/mapi/glapi/gen/ARB_direct_state_access.xml index e8526d1c528..444d59d7098 100644 --- a/src/mapi/glapi/gen/ARB_direct_state_access.xml +++ b/src/mapi/glapi/gen/ARB_direct_state_access.xml @@ -682,7 +682,7 @@ <!-- Program Pipeline object functions --> - <function name="CreateProgramPipelines"> + <function name="CreateProgramPipelines" no_error="true"> <param name="n" type="GLsizei" /> <param name="pipelines" type="GLuint *" /> </function> diff --git a/src/mapi/glapi/gen/ARB_separate_shader_objects.xml b/src/mapi/glapi/gen/ARB_separate_shader_objects.xml index 54c1be3fe73..2273b4875d7 100644 --- a/src/mapi/glapi/gen/ARB_separate_shader_objects.xml +++ b/src/mapi/glapi/gen/ARB_separate_shader_objects.xml @@ -37,7 +37,7 @@ <param name="n" type="GLsizei" /> <param name="pipelines" type="const GLuint *" /> </function> - <function name="GenProgramPipelines" es2="3.1"> + <function name="GenProgramPipelines" es2="3.1" no_error="true"> <param name="n" type="GLsizei" /> <param name="pipelines" type="GLuint *" /> </function> |