From b6f89e8b5c7b8588da4920a40f32a73efcc84ddf Mon Sep 17 00:00:00 2001 From: vroad Date: Sun, 14 Aug 2016 14:23:58 +0900 Subject: [PATCH] Add ExtensionBGRA and ExtensionPackedDepthStencil --- lime/graphics/opengl/ExtensionBGRA.hx | 7 +++++++ lime/graphics/opengl/ExtensionPackedDepthStencil.hx | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 lime/graphics/opengl/ExtensionBGRA.hx create mode 100644 lime/graphics/opengl/ExtensionPackedDepthStencil.hx diff --git a/lime/graphics/opengl/ExtensionBGRA.hx b/lime/graphics/opengl/ExtensionBGRA.hx new file mode 100644 index 000000000..e73f70174 --- /dev/null +++ b/lime/graphics/opengl/ExtensionBGRA.hx @@ -0,0 +1,7 @@ +package lime.graphics.opengl; + +class ExtensionBGRA { + + public static inline var BGRA_EXT = 0x80E1; + +} \ No newline at end of file diff --git a/lime/graphics/opengl/ExtensionPackedDepthStencil.hx b/lime/graphics/opengl/ExtensionPackedDepthStencil.hx new file mode 100644 index 000000000..49e8d0542 --- /dev/null +++ b/lime/graphics/opengl/ExtensionPackedDepthStencil.hx @@ -0,0 +1,7 @@ +package lime.graphics.opengl; + +class ExtensionPackedDepthStencil { + + public static inline var DEPTH24_STENCIL8_EXT = 0x88F0; + +} \ No newline at end of file