0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-09-22 08:31:32 +00:00
termux-packages/disabled-packages/gl4es/src_CMakeLists.txt.patch
Jia Yuan Lo 12b931ddb0 gl4es: Disabled
gl4es on Linux works since the driver support is there.
gl4es on Android works for OpenGL to OpenGL ES I guess.
gl4es on Termux however have to handle GLX to OpenGL ES which misses
quite a few extensions and performance loss to due to conversion.

Retire this package since mesa and virglrenderer are far more capable
than gl4es and better at serving Termux use cases.
2023-04-08 00:08:54 +08:00

17 lines
550 B
Diff

diff -uNr gl4es/src/CMakeLists.txt gl4es.mod/src/CMakeLists.txt
--- gl4es/src/CMakeLists.txt 2021-06-21 07:53:58.734942738 +0000
+++ gl4es.mod/src/CMakeLists.txt 2021-06-21 08:02:39.158267430 +0000
@@ -224,10 +224,10 @@ else()
endif()
install(TARGETS GL
LIBRARY
- DESTINATION "/usr/lib/gl4es/"
+ DESTINATION "@TERMUX_PREFIX@/lib/gl4es/"
)
install(FILES "../include/gl4esinit.h" "../include/gl4eshint.h"
- DESTINATION "/usr/include/gl4es/"
+ DESTINATION "@TERMUX_PREFIX@/include/gl4es/"
)
endif()