diff options
author | bsalomon <bsalomon@google.com> | 2016-06-14 09:32:41 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-14 09:32:41 -0700 |
commit | bb9c4e411db3d8bdc9e853caf6ed2b45d90f02ff (patch) | |
tree | 143a2093a3321f7b5a8939a6e44783dfb6071709 /src/gpu/glsl | |
parent | 1d4453efd1d03c1383452a58329956d484522170 (diff) |
Store GLSL max samplers using uint32_t rather than uint8_t
TBR=egdaniel@google.com
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2061123003
Review-Url: https://codereview.chromium.org/2061123003
Diffstat (limited to 'src/gpu/glsl')
-rwxr-xr-x | src/gpu/glsl/GrGLSLCaps.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gpu/glsl/GrGLSLCaps.h b/src/gpu/glsl/GrGLSLCaps.h index d18b71ae75..19a34620dc 100755 --- a/src/gpu/glsl/GrGLSLCaps.h +++ b/src/gpu/glsl/GrGLSLCaps.h @@ -214,10 +214,10 @@ private: const char* fFBFetchColorName; const char* fFBFetchExtensionString; - uint8_t fMaxVertexSamplers; - uint8_t fMaxGeometrySamplers; - uint8_t fMaxFragmentSamplers; - uint8_t fMaxCombinedSamplers; + uint32_t fMaxVertexSamplers; + uint32_t fMaxGeometrySamplers; + uint32_t fMaxFragmentSamplers; + uint32_t fMaxCombinedSamplers; AdvBlendEqInteraction fAdvBlendEqInteraction; |