| 534 | } |
| 535 | |
| 536 | void GLSLCompiler::translatePostIncrement(glsl::astPostIncrementExpression *expression) { |
| 537 | m_exportLine(expression); |
| 538 | translateExpression(expression->operand); |
| 539 | |
| 540 | m_usePointer = true; |
| 541 | translateExpression(expression->operand); |
| 542 | m_gen.Function.Increment(); |
| 543 | m_gen.Function.PopStack(); |
| 544 | m_usePointer = false; |
| 545 | } |
| 546 | |
| 547 | void GLSLCompiler::translatePostDecrement(glsl::astPostDecrementExpression *expression) { |
| 548 | m_exportLine(expression); |
nothing calls this directly
no outgoing calls
no test coverage detected