Commit 27da071d by Nicolas Capens Committed by Nicolas Capens

Fix R8_SNORM implementation format.

Change-Id: I68d7dbb445eee85e8a2ff4ac3a6fc6b31c6ea305 Reviewed-on: https://swiftshader-review.googlesource.com/15369Tested-by: 's avatarNicolas Capens <nicolascapens@google.com> Reviewed-by: 's avatarAlexis Hétu <sugoi@google.com> Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com>
parent 975adb73
...@@ -758,6 +758,7 @@ namespace egl ...@@ -758,6 +758,7 @@ namespace egl
case GL_LUMINANCE8_ALPHA8_EXT: case GL_LUMINANCE8_ALPHA8_EXT:
return sw::FORMAT_A8L8; return sw::FORMAT_A8L8;
case GL_R8_SNORM: case GL_R8_SNORM:
return sw::FORMAT_R8_SNORM;
case GL_R8: case GL_R8:
case GL_RED: case GL_RED:
return sw::FORMAT_R8; return sw::FORMAT_R8;
......
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