Advertise robustness extension strings.

Trac #18607 Signed-off-by: Daniel Koch Author: Nicolas Capens git-svn-id: https://angleproject.googlecode.com/svn/trunk@850 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent cf23c45f
#define MAJOR_VERSION 0 #define MAJOR_VERSION 0
#define MINOR_VERSION 0 #define MINOR_VERSION 0
#define BUILD_VERSION 0 #define BUILD_VERSION 0
#define BUILD_REVISION 813 #define BUILD_REVISION 850
#define STRINGIFY(x) #x #define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) STRINGIFY(x) #define MACRO_STRINGIFY(x) STRINGIFY(x)
......
...@@ -1017,6 +1017,10 @@ void Display::initExtensionString() ...@@ -1017,6 +1017,10 @@ void Display::initExtensionString()
mExtensionString = ""; mExtensionString = "";
// Multi-vendor (EXT) extensions
mExtensionString += "EGL_EXT_create_context_robustness ";
// ANGLE-specific extensions
if (isd3d9ex) { if (isd3d9ex) {
mExtensionString += "EGL_ANGLE_d3d_share_handle_client_buffer "; mExtensionString += "EGL_ANGLE_d3d_share_handle_client_buffer ";
} }
......
...@@ -3420,6 +3420,7 @@ void Context::initExtensionString() ...@@ -3420,6 +3420,7 @@ void Context::initExtensionString()
// Multi-vendor (EXT) extensions // Multi-vendor (EXT) extensions
mExtensionString += "GL_EXT_read_format_bgra "; mExtensionString += "GL_EXT_read_format_bgra ";
mExtensionString += "GL_EXT_robustness ";
if (supportsDXT1Textures()) if (supportsDXT1Textures())
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment