| 571 | } |
| 572 | |
| 573 | void GLSLCompiler::translateUnaryLogicalNot(glsl::astUnaryLogicalNotExpression *expression) { |
| 574 | translateExpression(expression->operand); |
| 575 | m_gen.Function.Not(); |
| 576 | } |
| 577 | |
| 578 | void GLSLCompiler::translatePrefixIncrement(glsl::astPrefixIncrementExpression *expression) { |
| 579 | m_exportLine(expression); |
nothing calls this directly
no outgoing calls
no test coverage detected