Home
last modified time | relevance | path

Searched refs:fFSFunctions (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/gpu/gl/
DGrGLShaderBuilder.cpp541 fFSFunctions.append(GrGLSLTypeString(returnType)); in fsEmitFunction()
543 fFSFunctions.appendf(" %s", outName->c_str()); in fsEmitFunction()
544 fFSFunctions.append("("); in fsEmitFunction()
546 args[i].appendDecl(this->ctxInfo(), &fFSFunctions); in fsEmitFunction()
548 fFSFunctions.append(", "); in fsEmitFunction()
551 fFSFunctions.append(") {\n"); in fsEmitFunction()
552 fFSFunctions.append(body); in fsEmitFunction()
553 fFSFunctions.append("}\n\n"); in fsEmitFunction()
792 fragShaderSrc.append(fFSFunctions); in compileAndAttachShaders()
DGrGLShaderBuilder.h401 SkString fFSFunctions; variable