/third_party/skia/src/gpu/gradients/ |
H A D | GrGradientShader.cpp | 70 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, R"( in make_single_interval_colorizer() 90 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, R"( in make_dual_interval_colorizer() 229 auto result = SkRuntimeEffect::MakeForShader(std::move(sksl)); in make_unrolled_colorizer() 320 auto result = SkRuntimeEffect::MakeForShader(std::move(sksl), in make_looping_colorizer() 542 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, R"( in make_clamped_gradient() 605 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, R"( in make_tiled_gradient() 782 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, R"( in MakeLinear() 795 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, R"( in MakeRadial() 815 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, R"( in MakeSweep() 847 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, in MakeConical() [all...] |
/third_party/skia/tests/ |
H A D | SkRuntimeEffectTest.cpp | 34 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(src)); in test_invalid_effect() 97 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(sksl), opt); in DEF_TEST() 215 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(sksl), options); in DEF_TEST() 222 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(sksl)); in DEF_TEST() 316 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(src), options); in build() 665 sk_sp<SkRuntimeEffect> effect = SkRuntimeEffect::MakeForShader(SkString(kSource)).effect; in DEF_TEST() 701 sk_sp<SkRuntimeEffect> effect = SkRuntimeEffect::MakeForShader(SkString(kSource)).effect; in DEF_TEST() 734 auto [effect, error] = SkRuntimeEffect::MakeForShader(SkString(kSource), options); in DEF_TEST() 764 auto [childEffect, err] = SkRuntimeEffect::MakeForShader(SkString( in test_RuntimeEffectStructNameReuse() 831 SkRuntimeEffect::MakeForShader(SkStringPrint in DEF_TEST() [all...] |
H A D | SkSLES2ConformanceTest.cpp | 47 SkRuntimeEffect::Result result = SkRuntimeEffect::MakeForShader(shaderString, options); in test_expect_fail() 64 SkRuntimeEffect::Result result = SkRuntimeEffect::MakeForShader(shaderString, options); in test_expect_pass()
|
/third_party/skia/include/effects/ |
H A D | SkRuntimeEffect.h | 127 // MakeForColorFilter and MakeForShader verify that the SkSL code is valid for those stages of 148 static Result MakeForShader(SkString sksl, const Options&); 149 static Result MakeForShader(SkString sksl) { in MakeForShader() function in SkSL::SkRuntimeEffect 150 return MakeForShader(std::move(sksl), Options{}); in MakeForShader() 164 static Result MakeForShader(std::unique_ptr<SkSL::Program> program, const Options&); 165 static Result MakeForShader(std::unique_ptr<SkSL::Program> program);
|
/third_party/skia/modules/skottie/src/effects/ |
H A D | SphereEffect.cpp | 131 SkRuntimeEffect::MakeForShader(SkStringPrintf(gSphereSkSL, gFancyLightSkSL), {}) in sphere_fancylight_effect() 135 SkRuntimeEffect::MakeForShader(SkStringPrintf(gSphereSkSL, gFancyLightSkSL), {}) in sphere_fancylight_effect() 145 SkRuntimeEffect::MakeForShader(SkStringPrintf(gSphereSkSL, gBasicLightSkSL), {}) in sphere_basiclight_effect()
|
H A D | BuldgeEffect.cpp | 67 SkRuntimeEffect::MakeForShader(SkString(gBulgeDisplacementSkSL), {}).effect.release(); in bulge_effect()
|
H A D | SkSLEffect.cpp | 78 auto result = SkRuntimeEffect::MakeForShader(shader, {}); in SkSLEffectAdapter()
|
H A D | DisplacementMapEffect.cpp | 61 SkRuntimeEffect::MakeForShader(SkString(gDisplacementSkSL)).effect.release(); in displacement_effect_singleton() 63 auto err = SkRuntimeEffect::MakeForShader(SkString(gDisplacementSkSL)).errorText; in displacement_effect_singleton()
|
H A D | FractalNoiseEffect.cpp | 197 auto result = SkRuntimeEffect::MakeForShader( in make_noise_effect()
|
/third_party/skia/src/sksl/dsl/ |
H A D | DSLRuntimeEffects.cpp | 34 result = SkRuntimeEffect::MakeForShader(std::move(program), options); in EndRuntimeShader()
|
/third_party/skia/gm/ |
H A D | runtimefunctions.cpp | 43 SkRuntimeEffect::MakeForShader(SkString(RUNTIME_FUNCTIONS_SRC)).effect;
|
H A D | runtimeshader.cpp | 36 : SkRuntimeEffect::MakeForShader(fSkSL); 640 SkRuntimeShaderBuilder builder(SkRuntimeEffect::MakeForShader(SkString(scale)).effect); in DEF_SIMPLE_GM() 657 auto effect = SkRuntimeEffect::MakeForShader(SkString(kSrc)).effect; in normal_map_shader() 681 auto effect = SkRuntimeEffect::MakeForShader(SkString(kSrc)).effect; in lit_shader()
|
H A D | runtimeintrinsics.cpp | 128 auto [effect, error] = SkRuntimeEffect::MakeForShader( in plot() 456 auto [effect, error] = SkRuntimeEffect::MakeForShader(make_matrix_comp_mult_sksl(N)); in plot_matrix_comp_mult() 493 auto [effect, error] = SkRuntimeEffect::MakeForShader(make_matrix_inverse_sksl(N)); in plot_matrix_inverse() 582 auto [effect, error] = SkRuntimeEffect::MakeForShader(make_bvec_sksl(type, fn)); in plot_bvec()
|
H A D | runtimeimagefilter.cpp | 26 sk_sp<SkRuntimeEffect> effect = SkRuntimeEffect::MakeForShader(SkString(R"( in make_filter()
|
/third_party/skia/src/gpu/effects/ |
H A D | GrSDFBlurEffect.cpp | 27 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, in Make()
|
/third_party/skia/fuzz/oss_fuzz/ |
H A D | FuzzSkRuntimeEffect.cpp | 39 SkRuntimeEffect::Result result = SkRuntimeEffect::MakeForShader(shaderText, options); in FuzzSkRuntimeEffect_Once()
|
/third_party/skia/modules/androidkit/src/ |
H A D | RuntimeShaderBuilder.cpp | 18 auto [eff,err] = SkRuntimeEffect::MakeForShader( in ShaderBuilder_Create()
|
/third_party/skia/src/gpu/ |
H A D | GrFragmentProcessor.cpp | 635 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, CLIP_EDGE_SKSL R"( 683 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, CLIP_EDGE_SKSL R"( 731 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, CLIP_EDGE_SKSL R"( 788 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, CLIP_EDGE_SKSL R"(
|
/third_party/skia/src/effects/imagefilters/ |
H A D | SkRuntimeImageFilter.cpp | 78 auto effect = SkMakeCachedRuntimeEffect(SkRuntimeEffect::MakeForShader, std::move(sksl)); in CreateProc()
|
H A D | SkMagnifierImageFilter.cpp | 103 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, R"( in make_magnifier_fp()
|
H A D | SkAlphaThresholdImageFilter.cpp | 142 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, R"( in make_alpha_threshold_fp()
|
/third_party/skia/src/core/ |
H A D | SkSDFFilter.cpp | 98 static auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, R"( in drawMaskSDFBlur()
|
H A D | SkRuntimeEffect.cpp | 396 SkRuntimeEffect::Result SkRuntimeEffect::MakeForShader(SkString sksl, const Options& options) { in MakeForShader() function in SkRuntimeEffect 415 SkRuntimeEffect::Result SkRuntimeEffect::MakeForShader(std::unique_ptr<SkSL::Program> program, in MakeForShader() function in SkRuntimeEffect 434 SkRuntimeEffect::Result SkRuntimeEffect::MakeForShader(std::unique_ptr<SkSL::Program> program) { in MakeForShader() function in SkRuntimeEffect 435 return MakeForShader(std::move(program), Options{}); in MakeForShader() 1113 auto effect = SkMakeCachedRuntimeEffect(SkRuntimeEffect::MakeForShader, std::move(sksl)); in CreateProc()
|
/third_party/skia/tools/viewer/ |
H A D | SkSLSlide.cpp | 99 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(sksl); in rebuild()
|
/third_party/skia/samplecode/ |
H A D | Sample3D.cpp | 405 auto [effect, error] = SkRuntimeEffect::MakeForShader(SkString(code));
|