Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Unified Diff: src/gpu/glsl/GrGLSLCaps.h

Issue 2061123003: Store GLSL max samplers using uint32_t rather than uint8_t (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/glsl/GrGLSLCaps.h
diff --git a/src/gpu/glsl/GrGLSLCaps.h b/src/gpu/glsl/GrGLSLCaps.h
index d18b71ae756ca214e247c1fb335dcf0050ef6e03..19a34620dc0f41c2a84e641f76f12d24b279a53f 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;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698