Advertise EGL_KHR_create_context so dEQP can successfully create an ES3 context.

We will need to investigate fully supporting this extension in the future. TRAC #23089 Signed-off-by: Shannon Woods Signed-off-by: Nicolas Capens Author: Jamie Madill git-svn-id: https://angleproject.googlecode.com/svn/branches/es3proto@2407 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent eafb069c
...@@ -509,6 +509,9 @@ void Display::initExtensionString() ...@@ -509,6 +509,9 @@ void Display::initExtensionString()
mExtensionString += "EGL_NV_post_sub_buffer"; mExtensionString += "EGL_NV_post_sub_buffer";
} }
// TODO: complete support for the EGL_KHR_create_context extension
mExtensionString += "EGL_KHR_create_context";
std::string::size_type end = mExtensionString.find_last_not_of(' '); std::string::size_type end = mExtensionString.find_last_not_of(' ');
if (end != std::string::npos) if (end != std::string::npos)
{ {
......
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