Home
last modified time | relevance | path

Searched refs:GLSLCodeGenerator (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/sksl/codegen/
DSkSLGLSLCodeGenerator.cpp45 void GLSLCodeGenerator::write(std::string_view s) { in write()
58 void GLSLCodeGenerator::writeLine(std::string_view s) { in writeLine()
64 void GLSLCodeGenerator::finishLine() { in finishLine()
70 void GLSLCodeGenerator::writeExtension(std::string_view name, bool require) { in writeExtension()
76 bool GLSLCodeGenerator::usesPrecisionModifiers() const { in usesPrecisionModifiers()
81 std::string GLSLCodeGenerator::getTypeName(const Type& raw) { in getTypeName()
147 void GLSLCodeGenerator::writeStructDefinition(const StructDefinition& s) { in writeStructDefinition()
169 void GLSLCodeGenerator::writeType(const Type& type) { in writeType()
173 void GLSLCodeGenerator::writeExpression(const Expression& expr, Precedence parentPrecedence) { in writeExpression()
239 void GLSLCodeGenerator::writeMinAbsHack(Expression& absExpr, Expression& otherExpr) { in writeMinAbsHack()
[all …]
DSkSLGLSLCodeGenerator.h50 class GLSLCodeGenerator : public CodeGenerator {
52 GLSLCodeGenerator(const Context* context, const Program* program, OutputStream* out) in GLSLCodeGenerator() function
/external/skia/src/sksl/
DSkSLCompiler.cpp694 GLSLCodeGenerator cg(fContext.get(), &program, &out); in toGLSL()