Color management with GLES
#1
I've noticed this condition when searching for why color management options are not available:
xbmc/video/dialogs/CMakeLists.txt:
if(OPENGL_FOUND OR CORE_SYSTEM_NAME STREQUAL windows OR CORE_SYSTEM_NAME STREQUAL windowsstore)
  list(APPEND SOURCES GUIDialogCMSSettings.cpp)
  list(APPEND HEADERS GUIDialogCMSSettings.h)
endif()

Does that mean GLES is not suitable for color management or perhaps there should be OR OPENGLES_FOUND there too?
Reply

Logout Mark Read Team Forum Stats Members Help
Color management with GLES0