diff options
Diffstat (limited to 'fuzz/fuzz.cpp')
-rw-r--r-- | fuzz/fuzz.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/fuzz.cpp b/fuzz/fuzz.cpp index b27eec988a..67b2a863a7 100644 --- a/fuzz/fuzz.cpp +++ b/fuzz/fuzz.cpp @@ -406,7 +406,7 @@ int fuzz_sksl2glsl(sk_sp<SkData> bytes) { SkSL::Compiler compiler; SkString output; bool result = compiler.toGLSL(SkSL::Program::kFragment_Kind, - SkString((const char*)bytes->data()), *SkSL::GLSLCapsFactory::Default(), &output); + SkString((const char*)bytes->data()), *SkSL::ShaderCapsFactory::Default(), &output); if (!result) { SkDebugf("[terminated] Couldn't compile input.\n"); |