-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated ios/macosx builds added deprecated renamed TextActor to TextField improved zip file system use glBindBuffer improved resources
- Loading branch information
1 parent
a7f1a50
commit d0a624c
Showing
198 changed files
with
8,500 additions
and
3,959 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
repo: b6d71054df5712e643a0685bc3ba54b123db5729 | ||
node: 81dbbfb32b4389cc6e447e0356fc46e4d82e83e9 | ||
node: 096eec250df8a0971ef7250f3a92bceaa2f3ff63 | ||
branch: default | ||
latesttag: oldrender | ||
latesttagdistance: 281 | ||
latesttagdistance: 315 |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
cmake_minimum_required (VERSION 2.6) | ||
project (Demo) | ||
|
||
add_subdirectory(../../../ oxygine-framework) | ||
add_definitions(${OXYGINE_DEFINITIONS}) | ||
include_directories(${OXYGINE_INCLUDE_DIRS}) | ||
link_directories(${OXYGINE_LIBRARY_DIRS}) | ||
|
||
SET(CMAKE_EXECUTABLE_SUFFIX ".html") | ||
set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-Wno-warn-absolute-paths") | ||
|
||
add_executable(Demo ../src/entry_point.cpp ../src/example.cpp ../src/test.cpp ../src/TestBox9Sprite.h ../src/TestClipRect.h ../src/TestDrag.h ../src/TestInputText.h ../src/TestManageRes.h ../src/TestMask.h ../src/TestPerf.h ../src/TestProgressBar.h ../src/TestRender2Texture.h ../src/TestSliding.h ../src/TestTexel2Pixel.h ../src/TestText.h ../src/TestTextureFormat.h ../src/TestTweens.h ../src/TestUserShader.h ../src/example.h ../src/test.h ) | ||
|
||
set_target_properties(Demo | ||
PROPERTIES | ||
LINK_FLAGS "-s WARN_ON_UNDEFINED_SYMBOLS=1 -s -Wno-warn-absolute-paths -s TOTAL_MEMORY=64435456") | ||
|
||
target_link_libraries(Demo ${OXYGINE_CORE_LIBS}) | ||
em_link_pre_js(Demo ${CMAKE_CURRENT_SOURCE_DIR}/data.js) |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
python ../../..//tools/others/embed_folder_js.py -s ../data | ||
|
||
mkdir build | ||
cd build | ||
cmake -DCMAKE_TOOLCHAIN_FILE=%EMSCRIPTEN%/cmake/platform/emscripten.cmake -G"Unix Makefiles" .. | ||
make | ||
cd .. |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
python ../../..//tools/others/embed_folder_js.py -s ../data | ||
|
||
mkdir build | ||
cd build | ||
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=%EMSCRIPTEN%/cmake/platform/emscripten.cmake -G"Unix Makefiles" .. | ||
make | ||
cd .. |
Binary file not shown.
Oops, something went wrong.