Chromium Code Reviews

Unified Diff: src/gpu/gl/GrGLSLBlend.h

Issue 1438003003: Move all ShaderBuilder files to GLSL (Closed) Base URL: https://skia.googlesource.com/skia.git@glslProgBuild
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/gpu/gl/GrGLSLBlend.h
diff --git a/src/gpu/gl/GrGLSLBlend.h b/src/gpu/gl/GrGLSLBlend.h
index b763f450d87c6c5f7939bc7f63da190c52720263..25ae37b1c1c41c2cfe2b67600fd74dbcc095bed7 100644
--- a/src/gpu/gl/GrGLSLBlend.h
+++ b/src/gpu/gl/GrGLSLBlend.h
@@ -10,14 +10,14 @@
#include "SkXfermode.h"
-class GrGLFragmentBuilder;
+class GrGLSLFragmentBuilder;
namespace GrGLSLBlend {
/*
* Appends GLSL code to fsBuilder that assigns a specified blend of the srcColor and dstColor
* variables to the outColor variable.
*/
- void AppendMode(GrGLFragmentBuilder* fsBuilder, const char* srcColor,
+ void AppendMode(GrGLSLFragmentBuilder* fsBuilder, const char* srcColor,
const char* dstColor, const char* outColor, SkXfermode::Mode mode);
};

Powered by Google App Engine