2021-03-09 18:10:59 +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 "include/sksl/DSL.h"
|
|
|
|
|
|
|
|
#include "tests/Test.h"
|
|
|
|
|
|
|
|
// This file verifies that DSL code compiles with only a DSL.h import. We don't bother with any
|
|
|
|
// 'real' tests here, as those are all in SkSLDSLTest.cpp.
|
|
|
|
|
|
|
|
using namespace SkSL::dsl;
|
|
|
|
|
|
|
|
// Defined in SkSLDSLTest.cpp (so that we don't have to put the required extra includes here)
|
|
|
|
void StartDSL(const sk_gpu_test::ContextInfo ctxInfo);
|
|
|
|
|
|
|
|
DEF_GPUTEST_FOR_MOCK_CONTEXT(DSLImportOnly, r, ctxInfo) {
|
|
|
|
StartDSL(ctxInfo);
|
Broke DSLVar into separate subclasses
Previously, DSLVar represented local, global, and parameter variables.
This splits it into three separate subclasses.
In addition to just being a cleaner API in general, this also addresses
an issue we ran into with the upcoming DSLParser: previously, a global
DSLVar's storage was not set correctly until DeclareGlobal was called,
so an AddToSymbolTable call prior to DeclareGlobal would create the
SkSL variable with the wrong storage, causing spurious errors on
global-only modifiers. But holding off on the AddToSymbolTable tends to
break constructs like "int x = 0, y = x", so improving the API seemed
like the best way to address it.
Now that we have greater type safety around variables, we can
potentially avoid having to call AddToSymbolTable for DSLVar and
DSLGlobalVar altogether, since we know they are both supposed to end up
in the symbol table, but that isn't something I want to change in this
CL.
Change-Id: I5f390a7384ce0af6a2131d84f97fc5e5b318063f
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/428576
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
2021-07-15 14:35:54 +00:00
|
|
|
Parameter x(kInt_Type);
|
2021-04-08 20:56:05 +00:00
|
|
|
Function(kInt_Type, "test", x).define(
|
2021-03-09 18:10:59 +00:00
|
|
|
If(x >= 0,
|
|
|
|
Block(Return(x)),
|
|
|
|
Block(Return(-x)))
|
|
|
|
);
|
|
|
|
End();
|
|
|
|
}
|