Chromium Code Reviews| Index: src/gpu/glsl/GrGLSL.h |
| diff --git a/src/gpu/glsl/GrGLSL.h b/src/gpu/glsl/GrGLSL.h |
| index dc53d7befaa65e551d77058c7854f5ba0691fd72..6fc8f83c7a3ca1be80fada8a9ef72a12d923ca02 100644 |
| --- a/src/gpu/glsl/GrGLSL.h |
| +++ b/src/gpu/glsl/GrGLSL.h |
| @@ -104,6 +104,8 @@ static inline const char* GrGLSLTypeString(GrSLType t) { |
| return "bool"; |
| case kInt_GrSLType: |
| return "int"; |
| + case kUint_GrSLType: |
| + return "uint"; |
| default: |
| SkFAIL("Unknown shader var type."); |
| return ""; // suppress warning |