Commit c24da28d by Michele Bissacco Committed by Nicolas Capens

Fix libGL compilation (missing spaces)

Change-Id: Ic1748fefb6778a4eeab8a41f81803586025a60ee Signed-off-by: 's avatarMichele Bissacco <mirh@protonmail.ch> Reviewed-on: https://swiftshader-review.googlesource.com/5740Tested-by: 's avatarNicolas Capens <capn@google.com> Reviewed-by: 's avatarNicolas Capens <capn@google.com>
parent ef8cd669
......@@ -3044,9 +3044,9 @@ const GLubyte* APIENTRY glGetString(GLenum name)
case GL_RENDERER:
return (GLubyte*)"SwiftShader";
case GL_VERSION:
return (GLubyte*)"2.1 SwiftShader "VERSION_STRING;
return (GLubyte*)"2.1 SwiftShader " VERSION_STRING;
case GL_SHADING_LANGUAGE_VERSION:
return (GLubyte*)"3.30 SwiftShader "VERSION_STRING;
return (GLubyte*)"3.30 SwiftShader " VERSION_STRING;
case GL_EXTENSIONS:
// Keep list sorted in following order:
// OES extensions
......
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