浏览代码

Fixed Typo

michael 10 年之前
父节点
当前提交
515b48153c
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      jme3-core/src/main/java/com/jme3/shader/Shader.java

+ 2 - 2
jme3-core/src/main/java/com/jme3/shader/Shader.java

@@ -78,11 +78,11 @@ public final class Shader extends NativeObject {
         /**
          * Controls tesselation factor (e.g how often a input patch should be subdivided)
          */
-        TesselationControl,
+        TessellationControl,
         /**
          * Controls tesselation transform (e.g similar to the vertex shader, but required to mix inputs manual)
          */
-        TesselationEvaluation;
+        TessellationEvaluation;
     }
 
     /**