From b727d5998e7e021e3c7b72727e08a19933c2248c Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 3 Mar 2015 12:34:25 +0100 Subject: [PATCH] Fixed the swapped bits for Control and Evaluation Shader --- jme3-core/src/main/java/com/jme3/renderer/opengl/GL4.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jme3-core/src/main/java/com/jme3/renderer/opengl/GL4.java b/jme3-core/src/main/java/com/jme3/renderer/opengl/GL4.java index 9ce4e835f..ce982eebf 100644 --- a/jme3-core/src/main/java/com/jme3/renderer/opengl/GL4.java +++ b/jme3-core/src/main/java/com/jme3/renderer/opengl/GL4.java @@ -39,8 +39,8 @@ import java.nio.IntBuffer; * @author Kirill Vainer */ public interface GL4 extends GL3 { - public static final int GL_TESS_CONTROL_SHADER=0x8E87; - public static final int GL_TESS_EVALUATION_SHADER=0x8E88; + public static final int GL_TESS_CONTROL_SHADER=0x8E88; + public static final int GL_TESS_EVALUATION_SHADER=0x8E87; public static final int GL_PATCHES=0xE; public void glPatchParameter(int count); }