MCPcopy Create free account
hub / github.com/dfranx/ShaderDebugger / translateExpressionList

Method translateExpressionList

src/HLSLCompiler.cpp:471–480  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

469 return true;
470 }
471 void HLSLCompiler::translateExpressionList(M4::HLSLExpression* expression)
472 {
473 int numExpressions = 0;
474 while (expression != NULL)
475 {
476 translateExpression(expression);
477 expression = expression->nextExpression;
478 ++numExpressions;
479 }
480 }
481
482 void HLSLCompiler::translateExpression(M4::HLSLExpression* expression)
483 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected