| 119 | } |
| 120 | |
| 121 | int CMP_CDECL SetSrgbBC2(void* options, CGU_BOOL sRGB) |
| 122 | { |
| 123 | if (!options) |
| 124 | return CGU_CORE_ERR_INVALIDPTR; |
| 125 | CMP_BC15Options* BC15optionsDefault = (CMP_BC15Options*)options; |
| 126 | |
| 127 | BC15optionsDefault->m_bIsSRGB = sRGB; |
| 128 | return CGU_CORE_OK; |
| 129 | } |
| 130 | |
| 131 | int CMP_CDECL SetGammaBC2(void* options, CGU_BOOL sRGB) |
| 132 | { |
no outgoing calls