Add ExtensionBGRA and ExtensionPackedDepthStencil

This commit is contained in:
vroad
2016-08-14 14:23:58 +09:00
parent b91e59cdd3
commit b6f89e8b5c
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package lime.graphics.opengl;
class ExtensionBGRA {
public static inline var BGRA_EXT = 0x80E1;
}

View File

@@ -0,0 +1,7 @@
package lime.graphics.opengl;
class ExtensionPackedDepthStencil {
public static inline var DEPTH24_STENCIL8_EXT = 0x88F0;
}