2021-02-11 18:19:38 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2021 Google LLC.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gm/gm.h"
|
|
|
|
#include "include/core/SkFont.h"
|
|
|
|
#include "include/effects/SkRuntimeEffect.h"
|
|
|
|
#include "src/gpu/GrBitmapTextureMaker.h"
|
|
|
|
#include "src/gpu/GrDirectContextPriv.h"
|
|
|
|
#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
|
|
|
|
#include "src/gpu/ops/GrFillRectOp.h"
|
|
|
|
#include "src/sksl/dsl/priv/DSLFPs.h"
|
2021-03-04 19:30:25 +00:00
|
|
|
#include "src/sksl/dsl/priv/DSLWriter.h"
|
|
|
|
#include "src/sksl/ir/SkSLVariable.h"
|
2021-02-11 18:19:38 +00:00
|
|
|
#include "tools/ToolUtils.h"
|
|
|
|
|
|
|
|
class SimpleDSLEffect : public GrFragmentProcessor {
|
|
|
|
public:
|
|
|
|
static constexpr GrProcessor::ClassID CLASS_ID = (GrProcessor::ClassID) 100;
|
|
|
|
|
|
|
|
SimpleDSLEffect() : GrFragmentProcessor(CLASS_ID, kNone_OptimizationFlags) {
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* name() const override { return "DSLEffect"; }
|
|
|
|
void onGetGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const override {}
|
|
|
|
bool onIsEqual(const GrFragmentProcessor& that) const override { return this == &that; }
|
|
|
|
std::unique_ptr<GrFragmentProcessor> clone() const override { return nullptr; }
|
|
|
|
|
2021-02-23 15:07:05 +00:00
|
|
|
std::unique_ptr<GrGLSLFragmentProcessor> onMakeProgramImpl() const override {
|
2021-02-11 18:19:38 +00:00
|
|
|
class Impl : public GrGLSLFragmentProcessor {
|
|
|
|
void emitCode(EmitArgs& args) override {
|
|
|
|
using namespace SkSL::dsl;
|
|
|
|
StartFragmentProcessor(this, &args);
|
2021-03-02 20:38:19 +00:00
|
|
|
|
|
|
|
// Test for skbug.com/11384
|
2021-03-05 19:23:48 +00:00
|
|
|
Var x(kInt, 1);
|
|
|
|
Declare(x);
|
2021-03-02 20:38:19 +00:00
|
|
|
SkASSERT(DSLWriter::Var(x).initialValue()->description() == "1");
|
|
|
|
|
2021-02-11 20:56:27 +00:00
|
|
|
Var blueAlpha(kUniform_Modifier, kHalf2);
|
|
|
|
fBlueAlphaUniform = VarUniformHandle(blueAlpha);
|
2021-03-05 19:23:48 +00:00
|
|
|
Var coords(kFloat4, sk_FragCoord());
|
|
|
|
Declare(coords);
|
2021-02-17 16:17:56 +00:00
|
|
|
Return(Half4(Swizzle(coords, X, Y) / 100, blueAlpha));
|
2021-02-11 18:19:38 +00:00
|
|
|
EndFragmentProcessor();
|
|
|
|
}
|
2021-02-11 20:56:27 +00:00
|
|
|
|
|
|
|
void onSetData(const GrGLSLProgramDataManager& pdman,
|
|
|
|
const GrFragmentProcessor& effect) override {
|
|
|
|
pdman.set2f(fBlueAlphaUniform, 0.0, 1.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
GrGLSLProgramDataManager::UniformHandle fBlueAlphaUniform;
|
2021-02-11 18:19:38 +00:00
|
|
|
};
|
2021-02-23 15:07:05 +00:00
|
|
|
return std::make_unique<Impl>();
|
2021-02-11 18:19:38 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
DEF_SIMPLE_GPU_GM(simple_dsl_test, ctx, rtCtx, canvas, 100, 100) {
|
|
|
|
auto fp = std::make_unique<SimpleDSLEffect>();
|
|
|
|
GrPaint paint;
|
|
|
|
paint.setColorFragmentProcessor(std::move(fp));
|
|
|
|
rtCtx->drawRect(nullptr, std::move(paint), GrAA::kNo, SkMatrix::I(),
|
|
|
|
SkRect::MakeIWH(100, 100));
|
|
|
|
}
|