| 561 | } |
| 562 | |
| 563 | void GLSLCompiler::translateUnaryPlus(glsl::astUnaryPlusExpression *expression) { |
| 564 | // TODO? |
| 565 | translateExpression(expression->operand); |
| 566 | } |
| 567 | |
| 568 | void GLSLCompiler::translateUnaryBitNot(glsl::astUnaryBitNotExpression *expression) { |
| 569 | translateExpression(expression->operand); |
nothing calls this directly
no outgoing calls
no test coverage detected