From ec89911766faf3fd41ea1d2dc9c94f0d11ea1724 Mon Sep 17 00:00:00 2001 From: Benjamin Maus Date: Sun, 6 Oct 2013 10:52:00 +0200 Subject: [PATCH] Added STENCIL_TEST -> GL.STENCIL_TEST field to PGL/PJOGL --- core/src/processing/opengl/PGL.java | 1 + core/src/processing/opengl/PJOGL.java | 1 + 2 files changed, 2 insertions(+) diff --git a/core/src/processing/opengl/PGL.java b/core/src/processing/opengl/PGL.java index 3053e86cf..4f91aa09b 100644 --- a/core/src/processing/opengl/PGL.java +++ b/core/src/processing/opengl/PGL.java @@ -2218,6 +2218,7 @@ public abstract class PGL { public static int SRC_ALPHA_SATURATE; public static int SCISSOR_TEST; + public static int STENCIL_TEST; public static int DEPTH_TEST; public static int DEPTH_WRITEMASK; public static int ALPHA_TEST; diff --git a/core/src/processing/opengl/PJOGL.java b/core/src/processing/opengl/PJOGL.java index b7a6abe4f..ae40f68b0 100644 --- a/core/src/processing/opengl/PJOGL.java +++ b/core/src/processing/opengl/PJOGL.java @@ -1348,6 +1348,7 @@ public class PJOGL extends PGL { SRC_ALPHA_SATURATE = GL.GL_SRC_ALPHA_SATURATE; SCISSOR_TEST = GL.GL_SCISSOR_TEST; + STENCIL_TEST = GL.GL_STENCIL_TEST; DEPTH_TEST = GL.GL_DEPTH_TEST; DEPTH_WRITEMASK = GL.GL_DEPTH_WRITEMASK; ALPHA_TEST = GL2ES1.GL_ALPHA_TEST;