Index: src/gpu/gl/GrGLProgramDataManager.cpp |
diff --git a/src/gpu/gl/GrGLProgramDataManager.cpp b/src/gpu/gl/GrGLProgramDataManager.cpp |
index a61e6974b64742b81bf8b1472c53503070814dbd..f0aba497201b3de3ef881bb6c48e28c4dc86a0e7 100644 |
--- a/src/gpu/gl/GrGLProgramDataManager.cpp |
+++ b/src/gpu/gl/GrGLProgramDataManager.cpp |
@@ -62,7 +62,7 @@ GrGLProgramDataManager::GrGLProgramDataManager(GrGLGpu* gpu, GrGLuint programID, |
void GrGLProgramDataManager::setSampler(UniformHandle u, int texUnit) const { |
const Uniform& uni = fUniforms[u.toIndex()]; |
- SkASSERT(uni.fType == kSampler2D_GrSLType); |
+ SkASSERT(uni.fType == kSampler2D_GrSLType || uni.fType == kSamplerExternal_GrSLType); |
SkASSERT(GrGLSLShaderVar::kNonArray == uni.fArrayCount); |
// FIXME: We still insert a single sampler uniform for every stage. If the shader does not |
// reference the sampler then the compiler may have optimized it out. Uncomment this assert |