Home
last modified time | relevance | path

Searched refs:fGlobals (Results 1 – 8 of 8) sorted by relevance

/external/skqp/src/sksl/
DSkSLGLSLCodeGenerator.cpp753 fGlobals.writeText("layout(origin_upper_left) in vec4 gl_FragCoord;\n"); in writeFunctionCall()
1516 fGlobals.writeText("uniform "); in writeFunctionCall()
1517 fGlobals.writeText(precision); in writeFunctionCall()
1518 fGlobals.writeText("float " SKSL_RTWIDTH_NAME ";\n"); in writeFunctionCall()
1522 fGlobals.writeText("uniform "); in writeFunctionCall()
1523 fGlobals.writeText(precision); in writeFunctionCall()
1524 fGlobals.writeText("float " SKSL_RTHEIGHT_NAME ";\n"); in writeFunctionCall()
1546 write_stringstream(fGlobals, *rawOut); in writeFunctionCall()
DSkSLGLSLCodeGenerator.h203 StringStream fGlobals; variable
/external/skqp/tools/bookmaker/
DmdOut.cpp380 auto defIter = fGlobals->fRefMap.find(structName); in setLink()
381 if (fGlobals->fRefMap.end() == defIter) { in setLink()
383 defIter = fGlobals->fRefMap.find(structName); in setLink()
385 if (fGlobals->fRefMap.end() != defIter) { in setLink()
387 auto structIter = fGlobals->fLinkMap.find(structName); in setLink()
388 SkASSERT(fGlobals->fLinkMap.end() != structIter); in setLink()
416 auto defIter = fGlobals->fRefMap.find(structName); in setLink()
417 if (fGlobals->fRefMap.end() != defIter) { in setLink()
419 auto globalIter = fGlobals->fLinkMap.find(structName); in setLink()
420 SkASSERT(fGlobals->fLinkMap.end() != globalIter); in setLink()
[all …]
DmdOut.h54 , fGlobals(&mdOut.fBmhParser.fGlobalNames) in DefinedState()
186 const NameMap* fGlobals; member
DincludeParser.cpp1106 this->checkTokens(fGlobals, "", "", nullptr, bmhParser); in crossCheck()
2157 fGlobals.emplace_back(MarkType::kConst, child->fContentStart, child->fContentEnd, in parseConst()
2159 Definition* globalMarkupChild = &fGlobals.back(); in parseConst()
2248 fGlobals.emplace_back(MarkType::kDefine, nameStart, child->fContentEnd, in parseDefine()
2250 Definition* globalMarkupChild = &fGlobals.back(); in parseDefine()
2304 fGlobals.emplace_back(MarkType::kEnum, child->fContentStart, child->fContentEnd, in parseEnum()
2306 markupChild = &fGlobals.back(); in parseEnum()
2654 fGlobals.emplace_back(MarkType::kMethod, start, end, tokenIter->fLineCount, in parseMethod()
2656 Definition* globalMarkupChild = &fGlobals.back(); in parseMethod()
2874 fGlobals.emplace_back(MarkType::kTypedef, child->fContentStart, child->fContentEnd, in parseTypedef()
[all …]
DincludeParser.h435 list<Definition> fGlobals; variable
/external/skia/src/sksl/codegen/
DSkSLGLSLCodeGenerator.h188 StringStream fGlobals; variable
DSkSLGLSLCodeGenerator.cpp751 fGlobals.writeText("layout(origin_upper_left) in vec4 gl_FragCoord;\n"); in writeFragCoord()
1443 fGlobals.writeText("uniform "); in writeInputVars()
1444 fGlobals.writeText(precision); in writeInputVars()
1445 fGlobals.writeText("float " SKSL_RTHEIGHT_NAME ";\n"); in writeInputVars()
1477 write_stringstream(fGlobals, *rawOut); in generateCode()