| 197 | } |
| 198 | |
| 199 | bool BitDepthIsFloat(BitDepth bitDepth) |
| 200 | { |
| 201 | if(bitDepth == BIT_DEPTH_F16) return true; |
| 202 | else if(bitDepth == BIT_DEPTH_F32) return true; |
| 203 | return false; |
| 204 | } |
| 205 | |
| 206 | int BitDepthToInt(BitDepth bitDepth) |
| 207 | { |
no outgoing calls