diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-01-22 20:10:17 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-01-22 20:10:17 +0000 |
commit | 962f2d4e61176a10d35686b192ca4b3e373a8b08 (patch) | |
tree | 2d094d14ee0d9d720299c0373e5eaaa08a05b7a8 /src | |
parent | f38f93c118b71e414c33fe2619ed1d7b1267a7a1 (diff) |
Fix r7321 build errors on non-windows compilers (using forward declared but not defined class in templated function).
git-svn-id: http://skia.googlecode.com/svn/trunk@7324 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src')
-rw-r--r-- | src/gpu/gl/GrGLEffect.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/gl/GrGLEffect.h b/src/gpu/gl/GrGLEffect.h index 32fc960125..76f865e57c 100644 --- a/src/gpu/gl/GrGLEffect.h +++ b/src/gpu/gl/GrGLEffect.h @@ -12,8 +12,8 @@ #include "GrGLShaderBuilder.h" #include "GrGLShaderVar.h" #include "GrGLSL.h" +#include "GrEffectStage.h" -class GrEffectStage; class GrGLTexture; /** @file |