| 157 | |
| 158 | |
| 159 | bool Type::IsSampler() const |
| 160 | { |
| 161 | return symbol == nullptr && |
| 162 | ( builtInType == OP_SAMPLER || |
| 163 | builtInType == OP_SAMPLER1D || |
| 164 | builtInType == OP_SAMPLER2D || |
| 165 | builtInType == OP_SAMPLER3D || |
| 166 | builtInType == OP_SAMPLERCUBE || |
| 167 | builtInType == OP_SAMPLERCOMPARISON ); |
| 168 | } |
| 169 | |
| 170 | bool Type::IsBuffer() const |
| 171 | { |
no outgoing calls
no test coverage detected