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

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

Issue 2371923002: Clamp Vulkan caps to INT_MAX (Closed)
Patch Set: Created 4 years, 3 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 | src/gpu/vk/GrVkCaps.cpp » ('j') | 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 d8145e729d69bbf46f014ba1f30f4596d8acbc01..ac409a36ba88b898ef1cf4d3b7f0a284a8c13bfe 100755
--- a/src/gpu/glsl/GrGLSLCaps.h
+++ b/src/gpu/glsl/GrGLSLCaps.h
@@ -217,10 +217,10 @@ private:
const char* fFBFetchColorName;
const char* fFBFetchExtensionString;
- uint32_t fMaxVertexSamplers;
- uint32_t fMaxGeometrySamplers;
- uint32_t fMaxFragmentSamplers;
- uint32_t fMaxCombinedSamplers;
+ int fMaxVertexSamplers;
+ int fMaxGeometrySamplers;
+ int fMaxFragmentSamplers;
+ int fMaxCombinedSamplers;
AdvBlendEqInteraction fAdvBlendEqInteraction;
« no previous file with comments | « no previous file | src/gpu/vk/GrVkCaps.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698