From 1cb4a0a34f9668b855b734d93d75b709694ce704 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 6 Oct 2018 15:15:37 +0200 Subject: [PATCH] Update --- libretro-common/glsm/glsm.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/libretro-common/glsm/glsm.c b/libretro-common/glsm/glsm.c index ee7d1af7a7..f04fbd7dca 100644 --- a/libretro-common/glsm/glsm.c +++ b/libretro-common/glsm/glsm.c @@ -216,6 +216,20 @@ GLenum rglGetError(void) return glGetError(); } +/* + * + * Core in: + * OpenGL : 3.2 + * OpenGLES : N/A + */ + +void rglProvokingVertex( GLenum provokeMode) +{ +#if defined(HAVE_OPENGL) + glProvokingVertex(provokeMode); +#endif +} + /* * * Core in: