Commit 0ec79e7514abc7360fd1cf939297bbb1b91b6714

Authored by Mumfrey
1 parent 0dd016d8

add glPolygonMode proxy in GL convenience class

java/client/com/mumfrey/liteloader/gl/GL.java
@@ -1267,5 +1267,9 @@ public class GL @@ -1267,5 +1267,9 @@ public class GL
1267 { 1267 {
1268 GL11.glLineWidth(width); 1268 GL11.glLineWidth(width);
1269 } 1269 }
1270 - 1270 +
  1271 + public static void glPolygonMode(int face, int mode)
  1272 + {
  1273 + GL11.glPolygonMode(face, mode);
  1274 + }
1271 } 1275 }