mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-05 22:22:57 +02:00
GLVND appears to break the entire UI on ATI video cards. It was set to GLVND due to an understanding that this was a no-op setting, but it turns out the documentation in OpenGL_GL_PREFERENCE is confusing, and it looks like LEGACY is the setting that was being used after all. An additional point of interest is that debian/rules contained OpenGL_GL_PREFERENCE=GLVND, and this was done back in the High Fidelity days. It's uncertain whether this was correct or not, though.
11 lines
257 B
CMake
11 lines
257 B
CMake
set(TARGET_NAME gpu-gl)
|
|
setup_hifi_library(Concurrent)
|
|
link_hifi_libraries(shared gl gpu gpu-gl-common shaders)
|
|
if (UNIX)
|
|
target_link_libraries(${TARGET_NAME} pthread)
|
|
endif(UNIX)
|
|
GroupSources("src")
|
|
|
|
set(OpenGL_GL_PREFERENCE "LEGACY")
|
|
target_opengl()
|
|
|