aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/SkSLCompiler.cpp
diff options
context:
space:
mode:
authorGravatar Ben Wagner <benjaminwagner@google.com>2018-01-24 17:32:17 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-01-26 15:03:28 +0000
commita56c4d267a877d208311a5326d134824ec987db3 (patch)
treed33e2e560c9f5962e4a8398cdea1c3be7e52d37e /src/sksl/SkSLCompiler.cpp
parentfc4f768e5aaf8efdd112f38295a35de83a0f9a55 (diff)
Rename .include files to .inc
Change-Id: Ie7a59d598a5916d8620cb55064a1204f90bc148d Reviewed-on: https://skia-review.googlesource.com/99244 Reviewed-by: Ethan Nicholas <ethannicholas@google.com> Commit-Queue: Ben Wagner <benjaminwagner@google.com>
Diffstat (limited to 'src/sksl/SkSLCompiler.cpp')
-rw-r--r--src/sksl/SkSLCompiler.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/sksl/SkSLCompiler.cpp b/src/sksl/SkSLCompiler.cpp
index 7589da98ee..06ab71f922 100644
--- a/src/sksl/SkSLCompiler.cpp
+++ b/src/sksl/SkSLCompiler.cpp
@@ -34,24 +34,24 @@
#define STRINGIFY(x) #x
static const char* SKSL_INCLUDE =
-#include "sksl.include"
+#include "sksl.inc"
;
static const char* SKSL_VERT_INCLUDE =
-#include "sksl_vert.include"
+#include "sksl_vert.inc"
;
static const char* SKSL_FRAG_INCLUDE =
-#include "sksl_frag.include"
+#include "sksl_frag.inc"
;
static const char* SKSL_GEOM_INCLUDE =
-#include "sksl_geom.include"
+#include "sksl_geom.inc"
;
static const char* SKSL_FP_INCLUDE =
-#include "sksl_enums.include"
-#include "sksl_fp.include"
+#include "sksl_enums.inc"
+#include "sksl_fp.inc"
;
namespace SkSL {