| 424 | } |
| 425 | |
| 426 | void imageColorSpace_CB(int id) |
| 427 | { |
| 428 | OCIO::ConstConfigRcPtr config = OCIO::GetCurrentConfig(); |
| 429 | const char * name = config->getColorSpaceNameByIndex(id); |
| 430 | if (!name) |
| 431 | { |
| 432 | return; |
| 433 | } |
| 434 | |
| 435 | g_inputColorSpace = name; |
| 436 | |
| 437 | UpdateOCIOGLState(); |
| 438 | glutPostRedisplay(); |
| 439 | } |
| 440 | |
| 441 | void displayDevice_CB(int id) |
| 442 | { |
nothing calls this directly
no test coverage detected