forked from anbox/anbox
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into touch_emulation
- Loading branch information
Showing
18 changed files
with
108 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,40 @@ | ||
set(GENERATED_SOURCES | ||
FUNCTION(PREPEND var prefix) | ||
SET(listVar "") | ||
FOREACH(f ${ARGN}) | ||
LIST(APPEND listVar "${prefix}/${f}") | ||
ENDFOREACH(f) | ||
SET(${var} "${listVar}" PARENT_SCOPE) | ||
ENDFUNCTION(PREPEND) | ||
|
||
PREPEND(GLHEADERS_SOURCES libOpenGLESDispatch/ | ||
render_egl_extensions.entries | ||
render_egl.entries | ||
gles_common.entries | ||
gles_extensions.entries | ||
gles1_only.entries | ||
gles1_extensions.entries | ||
gles2_only.entries | ||
gles2_extensions.entries | ||
gles3_only.entries) | ||
|
||
PREPEND(GLHEADERS_GENERATED_SOURCES ${CMAKE_CURRENT_BINARY_DIR}/../include/OpenGLESDispatch/ | ||
gles1_extensions_functions.h | ||
gles1_only_functions.h | ||
gles2_extensions_functions.h | ||
gles2_only_functions.h | ||
gles3_only_functions.h | ||
gles_common_functions.h | ||
gles_extensions_functions.h | ||
gles_functions.h | ||
RenderEGL_extensions_functions.h | ||
RenderEGL_functions.h) | ||
|
||
add_custom_target(GLHeaders) | ||
add_custom_command( | ||
TARGET GLHeaders | ||
POST_BUILD | ||
OUTPUT ${GLHEADERS_GENERATED_SOURCES} | ||
COMMAND ${CMAKE_SOURCE_DIR}/scripts/gen-emugl-headers.sh ${CMAKE_BINARY_DIR} | ||
DEPENDS ${GLHEADERS_SOURCES} | ||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}) | ||
|
||
add_subdirectory(GLESv1_dec) | ||
add_subdirectory(GLESv2_dec) | ||
add_subdirectory(libOpenGLESDispatch) | ||
add_subdirectory(renderControl_dec) | ||
include(GLESv1_dec/CMakeLists.txt) | ||
include(GLESv2_dec/CMakeLists.txt) | ||
include(libOpenGLESDispatch/CMakeLists.txt) | ||
include(renderControl_dec/CMakeLists.txt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
external/android-emugl/host/libs/libOpenGLESDispatch/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 6 additions & 4 deletions
10
external/android-emugl/host/libs/renderControl_dec/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
add_lunch_combo anbox_x86_64-userdebug | ||
add_lunch_combo anbox_x86_64-user | ||
add_lunch_combo anbox_armv7a_neon-userdebug | ||
add_lunch_combo anbox_armv7a_neon-user | ||
add_lunch_combo anbox_arm64-userdebug | ||
add_lunch_combo anbox_arm64-user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters