| 124 | } |
| 125 | |
| 126 | int CMP_CDECL SetSrgbBC3(void* options, CGU_BOOL sRGB) |
| 127 | { |
| 128 | if (!options) |
| 129 | return CGU_CORE_ERR_INVALIDPTR; |
| 130 | CMP_BC15Options* BC15optionsDefault = (CMP_BC15Options*)options; |
| 131 | |
| 132 | BC15optionsDefault->m_bIsSRGB = sRGB; |
| 133 | return CGU_CORE_OK; |
| 134 | } |
| 135 | |
| 136 | int CMP_CDECL SetGammaBC3(void* options, CGU_BOOL sRGB) |
| 137 | { |
no outgoing calls