| 566 | } |
| 567 | |
| 568 | void GLSLCompiler::translateUnaryBitNot(glsl::astUnaryBitNotExpression *expression) { |
| 569 | translateExpression(expression->operand); |
| 570 | m_gen.Function.BitNot(); |
| 571 | } |
| 572 | |
| 573 | void GLSLCompiler::translateUnaryLogicalNot(glsl::astUnaryLogicalNotExpression *expression) { |
| 574 | translateExpression(expression->operand); |
nothing calls this directly
no outgoing calls
no test coverage detected