| 545 | } |
| 546 | |
| 547 | void GLSLCompiler::translatePostDecrement(glsl::astPostDecrementExpression *expression) { |
| 548 | m_exportLine(expression); |
| 549 | translateExpression(expression->operand); |
| 550 | |
| 551 | m_usePointer = true; |
| 552 | translateExpression(expression->operand); |
| 553 | m_gen.Function.Decrement(); |
| 554 | m_gen.Function.PopStack(); |
| 555 | m_usePointer = false; |
| 556 | } |
| 557 | |
| 558 | void GLSLCompiler::translateUnaryMinus(glsl::astUnaryMinusExpression *expression) { |
| 559 | translateExpression(expression->operand); |
nothing calls this directly
no outgoing calls
no test coverage detected