Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
SkSLSPIRVTestbed.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2020 Google LLC
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
12#include "src/sksl/SkSLUtil.h"
15#include "tests/Test.h"
16
17#include <memory>
18#include <string>
19
20static void test(skiatest::Reporter* r,
21 const char* src,
24 SkSL::ProgramSettings settings;
25 std::unique_ptr<SkSL::Program> program = compiler.convertProgram(kind, std::string(src),
26 settings);
27 if (!program) {
28 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str());
29 REPORTER_ASSERT(r, program);
30 } else {
31 std::string output;
33 }
34}
35
36DEF_TEST(SkSLSPIRVTestbed, r) {
37 // Add in your SkSL here.
38 test(r,
39 R"__SkSL__(
40 void main() {
41 sk_FragColor = half4(0);
42 }
43 )__SkSL__");
44}
#define test(name)
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
#define DEF_TEST(name, reporter)
Definition Test.h:312
#define REPORTER_ASSERT(r, cond,...)
Definition Test.h:286
static const ShaderCaps * Default()
Definition SkSLUtil.h:166
bool ToSPIRV(Program &program, const ShaderCaps *caps, OutputStream &out)