Commit e59a9c5c authored by qiankun.miao's avatar qiankun.miao Committed by Commit bot

Add GL_SAMPLER_CUBE_SHADOW to accepted uniform type

This CL adds missed uniform type in
https://codereview.chromium.org/1349793004. Full supported uniform type
can be found in Table 2.10, es spec 3.0.4 page 64.

BUG=429053

Review URL: https://codereview.chromium.org/1635973002

Cr-Commit-Position: refs/heads/master@{#371702}
parent a9c81551
...@@ -228,6 +228,7 @@ Program::UniformInfo::UniformInfo(const std::string& client_name, ...@@ -228,6 +228,7 @@ Program::UniformInfo::UniformInfo(const std::string& client_name,
case GL_SAMPLER_2D_ARRAY: case GL_SAMPLER_2D_ARRAY:
case GL_SAMPLER_2D_SHADOW: case GL_SAMPLER_2D_SHADOW:
case GL_SAMPLER_2D_ARRAY_SHADOW: case GL_SAMPLER_2D_ARRAY_SHADOW:
case GL_SAMPLER_CUBE_SHADOW:
case GL_INT_SAMPLER_2D: case GL_INT_SAMPLER_2D:
case GL_INT_SAMPLER_3D: case GL_INT_SAMPLER_3D:
case GL_INT_SAMPLER_CUBE: case GL_INT_SAMPLER_CUBE:
......
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