daed2592bb
In addition to the unsurprising changes to eliminate references to src/, we also had to tighten up some C++17-isms as they are not permitted in public headers. Change-Id: Ie5005a33d7a135e69fb66beca5e7a5f960dbd453 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/378496 Reviewed-by: Brian Osman <brianosman@google.com>
71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
/*
|
|
* Copyright 2021 Google LLC.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SKSL_DSL_FUNCTION
|
|
#define SKSL_DSL_FUNCTION
|
|
|
|
#include "include/sksl/DSLBlock.h"
|
|
#include "include/sksl/DSLType.h"
|
|
|
|
namespace SkSL {
|
|
|
|
class Block;
|
|
class Variable;
|
|
|
|
namespace dsl {
|
|
|
|
class DSLType;
|
|
|
|
class DSLFunction {
|
|
public:
|
|
template<class... Parameters>
|
|
DSLFunction(const DSLType& returnType, const char* name, Parameters&... parameters)
|
|
: fReturnType(&returnType.skslType()) {
|
|
std::vector<const DSLVar*> parameterArray;
|
|
parameterArray.reserve(sizeof...(parameters));
|
|
|
|
// in C++17, we could just do:
|
|
// (parameterArray.push_back(¶meters), ...);
|
|
int unused[] = {0, (static_cast<void>(parameterArray.push_back(¶meters)), 0)...};
|
|
static_cast<void>(unused);
|
|
this->init(returnType, name, std::move(parameterArray));
|
|
}
|
|
|
|
virtual ~DSLFunction() = default;
|
|
|
|
template<class... Stmt>
|
|
void define(Stmt... stmts) {
|
|
DSLBlock block = DSLBlock(DSLStatement(std::move(stmts))...);
|
|
this->define(std::move(block));
|
|
}
|
|
|
|
void define(DSLBlock block);
|
|
|
|
template<class... Args>
|
|
DSLExpression operator()(Args... args) {
|
|
ExpressionArray argArray;
|
|
argArray.reserve_back(sizeof...(args));
|
|
int unused[] = {0, (static_cast<void>(argArray.push_back(args.release())), 0)...};
|
|
static_cast<void>(unused);
|
|
return this->call(std::move(argArray));
|
|
}
|
|
|
|
private:
|
|
void init(const DSLType& returnType, const char* name, std::vector<const DSLVar*> params);
|
|
|
|
DSLExpression call(ExpressionArray args);
|
|
|
|
const SkSL::Type* fReturnType;
|
|
const /* SkSL::FunctionDeclaration* */void* fDecl;
|
|
};
|
|
|
|
} // namespace dsl
|
|
|
|
} // namespace SkSL
|
|
|
|
#endif
|