Mesa (master): mesa/main: clean up extension-check for GL_VERTEX_PROGRAM_POINT_SIZE

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Apr 1 11:21:51 UTC 2020


Module: Mesa
Branch: master
Commit: 81d901aef1582dfaf7e5f27f01fc9928975ad047
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=81d901aef1582dfaf7e5f27f01fc9928975ad047

Author: Erik Faye-Lund <erik.faye-lund at collabora.com>
Date:   Mon Feb 25 12:50:08 2019 +0100

mesa/main: clean up extension-check for GL_VERTEX_PROGRAM_POINT_SIZE

Signed-off-by: Erik Faye-Lund <erik.faye-lund at collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/329>

---

 src/mesa/main/enable.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c
index ad743ba7b98..b9743dd66f4 100644
--- a/src/mesa/main/enable.c
+++ b/src/mesa/main/enable.c
@@ -1039,9 +1039,9 @@ _mesa_set_enable(struct gl_context *ctx, GLenum cap, GLboolean state)
          /* This was added with ARB_vertex_program, but it is also used with
           * GLSL vertex shaders on desktop.
           */
-         if (!_mesa_is_desktop_gl(ctx))
+         if (!_mesa_has_ARB_vertex_program(ctx) &&
+             ctx->API != API_OPENGL_CORE)
             goto invalid_enum_error;
-         CHECK_EXTENSION(ARB_vertex_program);
          if (ctx->VertexProgram.PointSizeEnabled == state)
             return;
          FLUSH_VERTICES(ctx, _NEW_PROGRAM);
@@ -1816,9 +1816,9 @@ _mesa_IsEnabled( GLenum cap )
          /* This was added with ARB_vertex_program, but it is also used with
           * GLSL vertex shaders on desktop.
           */
-         if (!_mesa_is_desktop_gl(ctx))
+         if (!_mesa_has_ARB_vertex_program(ctx) &&
+             ctx->API != API_OPENGL_CORE)
             goto invalid_enum_error;
-         CHECK_EXTENSION(ARB_vertex_program);
          return ctx->VertexProgram.PointSizeEnabled;
       case GL_VERTEX_PROGRAM_TWO_SIDE_ARB:
          if (!_mesa_has_ARB_vertex_program(ctx))



More information about the mesa-commit mailing list