first pass Windows support
This commit is contained in:
@@ -1,21 +1,156 @@
|
||||
cmake_minimum_required(VERSION 3.14)
|
||||
set(PROJECT_NAME "polyvox_filament")
|
||||
project(${PROJECT_NAME} LANGUAGES CXX)
|
||||
project(${PROJECT_NAME} LANGUAGES C CXX)
|
||||
|
||||
cmake_policy(VERSION 3.14...3.25)
|
||||
|
||||
# This value is used when generating builds using this plugin, so it must
|
||||
# not be changed
|
||||
set(PLUGIN_NAME "polyvox_filament_plugin")
|
||||
|
||||
add_library(${PLUGIN_NAME} SHARED
|
||||
# Any new source files that you add to the plugin should be added here.
|
||||
list(APPEND PLUGIN_SOURCES
|
||||
"polyvox_filament_plugin.cpp"
|
||||
"polyvox_filament_plugin.h"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/AssetManager.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/FilamentViewer.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/PolyvoxFilamentApi.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/StreamBufferAdapter.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/TimeIt.cpp"
|
||||
)
|
||||
|
||||
# Define the plugin library target. Its name must not be changed (see comment
|
||||
# on PLUGIN_NAME above).
|
||||
add_library(${PLUGIN_NAME} SHARED
|
||||
"include/polyvox_filament/polyvox_filament_plugin_c_api.h"
|
||||
"polyvox_filament_plugin_c_api.cpp"
|
||||
${PLUGIN_SOURCES}
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/include/material/image.c"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/include/material/unlit_opaque.c"
|
||||
)
|
||||
|
||||
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
||||
|
||||
apply_standard_settings(${PLUGIN_NAME})
|
||||
|
||||
set_target_properties(${PLUGIN_NAME} PROPERTIES
|
||||
CXX_VISIBILITY_PRESET hidden)
|
||||
target_compile_features(${PLUGIN_NAME} PUBLIC cxx_std_20)
|
||||
target_compile_definitions(${PLUGIN_NAME} PRIVATE FLUTTER_PLUGIN_IMPL)
|
||||
target_include_directories(${PLUGIN_NAME} INTERFACE
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/include")
|
||||
target_link_libraries(${PLUGIN_NAME} PRIVATE flutter flutter_wrapper_plugin)
|
||||
|
||||
add_library(glfw SHARED IMPORTED)
|
||||
set_property(TARGET glfw PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/glfw-3.3.8.bin.WIN64/lib-vc2022/glfw3.lib")
|
||||
|
||||
add_library(bluegl SHARED IMPORTED)
|
||||
set_property(TARGET bluegl PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/bluegl.lib")
|
||||
add_library(geometry SHARED IMPORTED)
|
||||
set_property(TARGET geometry PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/geometry.lib")
|
||||
add_library(filament SHARED IMPORTED)
|
||||
set_property(TARGET filament PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/filament.lib")
|
||||
add_library(backend SHARED IMPORTED)
|
||||
set_property(TARGET backend PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/backend.lib")
|
||||
add_library(filameshio SHARED IMPORTED)
|
||||
set_property(TARGET filameshio PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/filameshio.lib")
|
||||
add_library(filament_viewer SHARED IMPORTED)
|
||||
set_property(TARGET filament_viewer PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/viewer.lib")
|
||||
add_library(filamat SHARED IMPORTED)
|
||||
set_property(TARGET filamat PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/filamat.lib")
|
||||
add_library(utils SHARED IMPORTED)
|
||||
set_property(TARGET utils PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/utils.lib")
|
||||
add_library(filabridge SHARED IMPORTED)
|
||||
set_property(TARGET filabridge PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/filabridge.lib")
|
||||
add_library(gltfio_core SHARED IMPORTED)
|
||||
set_property(TARGET gltfio_core PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/gltfio_core.lib")
|
||||
add_library(filament-iblprefilter SHARED IMPORTED)
|
||||
set_property(TARGET filament-iblprefilter PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/filament-iblprefilter.lib")
|
||||
add_library(image SHARED IMPORTED)
|
||||
set_property(TARGET image PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/image.lib")
|
||||
add_library(imageio STATIC IMPORTED)
|
||||
set_property(TARGET imageio PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/imageio.lib")
|
||||
add_library(tinyexr STATIC IMPORTED)
|
||||
set_property(TARGET tinyexr PROPERTY IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/lib/tinyexr.lib")
|
||||
add_library(camutils SHARED IMPORTED)
|
||||
set_property(TARGET camutils PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/camutils.lib")
|
||||
add_library(filaflat SHARED IMPORTED)
|
||||
set_property(TARGET filaflat PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/filaflat.lib")
|
||||
add_library(dracodec SHARED IMPORTED)
|
||||
set_property(TARGET dracodec PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/dracodec.lib")
|
||||
add_library(ibl SHARED IMPORTED)
|
||||
set_property(TARGET ibl PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/ibl.lib")
|
||||
add_library(ktxreader SHARED IMPORTED)
|
||||
set_property(TARGET ktxreader PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/ktxreader.lib")
|
||||
add_library(stb SHARED IMPORTED)
|
||||
set_property(TARGET stb PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/stb.lib")
|
||||
add_library(bluevk SHARED IMPORTED)
|
||||
set_property(TARGET bluevk PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/bluevk.lib")
|
||||
add_library(vkshaders SHARED IMPORTED)
|
||||
set_property(TARGET vkshaders PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/vkshaders.lib")
|
||||
add_library(uberzlib SHARED IMPORTED)
|
||||
set_property(TARGET uberzlib PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/uberzlib.lib")
|
||||
add_library(smol-v SHARED IMPORTED)
|
||||
set_property(TARGET smol-v PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/smol-v.lib")
|
||||
add_library(uberarchive SHARED IMPORTED)
|
||||
set_property(TARGET uberarchive PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/uberarchive.lib")
|
||||
add_library(meshoptimizer SHARED IMPORTED)
|
||||
set_property(TARGET meshoptimizer PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/meshoptimizer.lib")
|
||||
add_library(basis_transcoder SHARED IMPORTED)
|
||||
set_property(TARGET basis_transcoder PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/basis_transcoder.lib")
|
||||
add_library(z SHARED IMPORTED)
|
||||
set_property(TARGET z PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/z.lib")
|
||||
add_library(zstd SHARED IMPORTED)
|
||||
set_property(TARGET zstd PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/zstd.lib")
|
||||
add_library(png SHARED IMPORTED)
|
||||
set_property(TARGET png PROPERTY IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/png.lib")
|
||||
|
||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/lib/glfw-3.3.8.bin.WIN64/include)
|
||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../ios/include)
|
||||
|
||||
get_cmake_property(_variableNames VARIABLES)
|
||||
list (SORT _variableNames)
|
||||
foreach (_variableName ${_variableNames})
|
||||
message(STATUS "${_variableName}FOO=BAR${${_variableName}}")
|
||||
endforeach()
|
||||
|
||||
target_link_libraries(${PLUGIN_NAME} PRIVATE
|
||||
flutter
|
||||
flutter_wrapper_plugin
|
||||
glfw
|
||||
bluegl
|
||||
opengl32
|
||||
gltfio_core
|
||||
filament
|
||||
backend
|
||||
geometry
|
||||
filameshio
|
||||
filament_viewer
|
||||
filamat
|
||||
filabridge
|
||||
filament-iblprefilter
|
||||
camutils
|
||||
filaflat
|
||||
dracodec
|
||||
ibl
|
||||
ktxreader
|
||||
image
|
||||
imageio
|
||||
utils
|
||||
stb
|
||||
bluevk
|
||||
vkshaders
|
||||
uberzlib
|
||||
smol-v
|
||||
uberarchive
|
||||
meshoptimizer
|
||||
geometry
|
||||
basis_transcoder
|
||||
z
|
||||
zstd
|
||||
png
|
||||
tinyexr
|
||||
Shlwapi
|
||||
)
|
||||
|
||||
# List of absolute paths to libraries that should be bundled with the plugin
|
||||
set(polyvox_filament_bundled_libraries
|
||||
|
||||
@@ -1,23 +0,0 @@
|
||||
#ifndef FLUTTER_PLUGIN_POLYVOX_FILAMENT_PLUGIN_H_
|
||||
#define FLUTTER_PLUGIN_POLYVOX_FILAMENT_PLUGIN_H_
|
||||
|
||||
#include <flutter_plugin_registrar.h>
|
||||
|
||||
#ifdef FLUTTER_PLUGIN_IMPL
|
||||
#define FLUTTER_PLUGIN_EXPORT __declspec(dllexport)
|
||||
#else
|
||||
#define FLUTTER_PLUGIN_EXPORT __declspec(dllimport)
|
||||
#endif
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
FLUTTER_PLUGIN_EXPORT void PolyvoxFilamentPluginRegisterWithRegistrar(
|
||||
FlutterDesktopPluginRegistrarRef registrar);
|
||||
|
||||
#if defined(__cplusplus)
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // FLUTTER_PLUGIN_POLYVOX_FILAMENT_PLUGIN_H_
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6902bcc29c2b585d356e9458ce92a86e29bb22b5bf648279c01d7b32bb0cc30c
|
||||
size 11918074
|
||||
oid sha256:9d85db660d0dd34c2ec5f5ba1ec6417ef6e82e1ac1c9de5d4d72bdcf9b6e1cae
|
||||
size 75298570
|
||||
|
||||
3
windows/lib/basis_transcoder.lib
Normal file
3
windows/lib/basis_transcoder.lib
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f864703233f081e86036afb00933fac2034886e1e70ec30c67acd14f9673faf0
|
||||
size 1685836
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5bc11632a834aa49e0e9a946ffcf0e4d34529e2f4f4efab433a54b0cec447cff
|
||||
size 2374708
|
||||
oid sha256:4718f68cd7c60039aa0744e3f678d9cf6d531f147955e16b2ca329bca8e818d6
|
||||
size 1588236
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:65010c682bd890784378223c73dff4b2e49508868b61752cc05e5254bf7ad088
|
||||
size 459718
|
||||
oid sha256:93d23d6e1cf553f63749363d52b60d112a77198ee2e9acaaa667d80ec60ebee3
|
||||
size 1179532
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8838ff8f3f1de0510e42e34c1448e0654c8505dd36d270b9175b0e1e21f8d9e8
|
||||
size 212486
|
||||
oid sha256:4295645c206e013f3d66b191ce7c0c2917d5691a70961e48b516115f02aa0166
|
||||
size 499532
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f740062daef16989588c35599f799e9c2c2603ff0f4cb19fbc5e24f7c5398dc1
|
||||
size 1128562
|
||||
oid sha256:d9215689c3876a8446129a6192851551d5fc4646efb7e7b674a9f51b746f87ed
|
||||
size 1795900
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ab9090513a1ae8d1eae93e4587e20190d031165af1c73fe4f5a04e3bf4c76bbd
|
||||
size 16516190
|
||||
oid sha256:044362510952ef013cf451e0786fde02979fa98a8a4789cf2867006999f9c4ef
|
||||
size 80514524
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:76b8ef1b17749470c02802c634c5995548d8bd28fb8ef3f7486e9fbc03e4d3d7
|
||||
size 1085118
|
||||
oid sha256:d92f426fb0c2c35f48c97b510f298506cbc36311a6d57cbc3e23cfb0b1bfc419
|
||||
size 2566176
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cd0d62e49f7be4228864904e9716a5671b19d944218ced4c3a95cd940fe92aed
|
||||
size 720162
|
||||
oid sha256:b668c89dc0da8c573bd26f896c9876dd888fff6acb9eeea246452a0133b478dd
|
||||
size 2949490
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bbb488f7e04868d4b732802909efe77a0e3e748a1d4fac931cbd04f2d900fea6
|
||||
size 167775934
|
||||
oid sha256:fc649b5ccff46b0ea32ade92c0f4b1dd3160eb53f6cbb91f37f6d3d1812f3310
|
||||
size 653287208
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:23d245b2f42af2555f91f48bc7e8e8f44cc6d6e9948290e215ef35e4b34252e5
|
||||
size 4648470
|
||||
oid sha256:1fe994fece766ea00bce2fcada7da5e0e61f48b632e0e01caa80fe5e62d32b2a
|
||||
size 23595964
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b40c30d66799e13d913ba65ca8971caa1c7b3215e7085828616ba5d6336db7c8
|
||||
size 257234
|
||||
oid sha256:c00f2641396ce798bba09f799faf8096833a925f7832d59d0ca12929cbdc0a14
|
||||
size 593496
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7f7b19575d2f70f93bdb564f9e1c4f6c3754e080ebaeb01f92e0130ee86c5fb1
|
||||
size 21548830
|
||||
oid sha256:f6b09b213fde33de9c3227dbe5a0796e17f7e63b0a2fc317a8fbc1770ea8f4ae
|
||||
size 162019182
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0882890db55945d85954a5005a3e8714edccb9eb8075e34183a1abb36d92f80b
|
||||
size 273608
|
||||
oid sha256:353f43331903e89edd21c6345035dd511d0b18463742223cd02bca534f399d68
|
||||
size 1143376
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cc4c1d7239fc318b4bbfa7de3ea854e3b7a32f3e29e3a9a161a8187adb81747a
|
||||
size 289260
|
||||
oid sha256:82007bbb9482a91020908f27871678aa361dc3f42a85bbe8df383ccc617b7570
|
||||
size 3060354
|
||||
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/LICENSE.md
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/LICENSE.md
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:149704059b5d0bf551637e50042dd4de9c2cae921021f6636298911e3a5f9462
|
||||
size 904
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/README.md
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0f9ef87a023041f8dba13985ea9d5792e272e57d52c1213d38dbb82beed57ecf
|
||||
size 2485
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/bc_s.png
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/bc_s.png
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9e7ed0ef70f99bb7f763a48ddd95d5990e103bb145eedfd0a76d19c122374be2
|
||||
size 676
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/bdwn.png
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/bdwn.png
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:782b30d237bdbeddfde4aed01f007264cc116b2d4be2f398a7cb74ec7a5bc58b
|
||||
size 147
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:244d38763f7f4c193d83c862d3eeca32e2157c156c496cc8d56a50f27803e2d2
|
||||
size 2755
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:977e57d6c3d927e012fe93388dbe2d121ba51f160df490de3d230d65e86873f8
|
||||
size 20639
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/closed.png
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/closed.png
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c98c02adc57337f58c40aae15bbac05a3ccb364e5adb1d610a16452e92f17830
|
||||
size 132
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f55eb17295671196e6e61194e6579e5704a8dc953bb2f444483bc821a5126f5e
|
||||
size 2757
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dbe2f99979a966a39e3b48080208e2d6208fd04879d2191911f98436a6c02208
|
||||
size 20268
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2f867260addeb011afd2c17a44405b9615e7d769898b81bf879c50207962e286
|
||||
size 2759
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:26b1b9bb1d465e8a6e3af72909ba7c4595eef27c858fef2765cedac43d935254
|
||||
size 21291
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c6d426a88ae6a8a074a240e9b03cbb9fdf5dc18d61aa4966bc72782e95d7c02f
|
||||
size 2759
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e25b112e6e291214ebc6f34f09c5431f6bffc46e7fa68341c67ba0d6aea58645
|
||||
size 27513
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:10c5a9e636afb5db4cab5cb80acb93246a6d1ec8f7305738bf4c4dfe9dcad92f
|
||||
size 3340
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cd33202a8c6d16328e495b224c6b61d0f1ff805232e9e7d3ce77da05ea15b5d6
|
||||
size 4171
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5ea0ae7fd093fdb7e2f82d7fd128cd6119b27a039ce95b2c8d925ab7dbcd0554
|
||||
size 3676
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2ef68578022530b7b8d4a55d454d690b3f4ad41b4159e079016468739f065938
|
||||
size 3473
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d72fb014914e84566debaf336ec9584f30ba4d2492265f106d69da4afc52bc08
|
||||
size 3011
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/doc.png
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/doc.png
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5cd4cb41607a30d7820cc20ea76b4a3b8f57d3d2b7d102b58c8e13ad95e83aa1
|
||||
size 746
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/doxygen.css
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/doxygen.css
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2e122217b58e3ac24e7f3610a3871c3f1faf80bf7cac8432239e70af3d49c247
|
||||
size 33676
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/doxygen.svg
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/doxygen.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:624656a65fdcbd051f0260b529b64292d734f4132b7b6f16fa4af6d74c403156
|
||||
size 15382
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d94a7a53c0c38cd6520d86fdaf3ff6ac2e579a361c5db0f79ccba66a390ce052
|
||||
size 4452
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/extra.css
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/extra.css
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8fcec6959e5e73129be4e8500a174f0711f41a127656982dcd4c7a4262ebc9ae
|
||||
size 6480
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/files.html
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/files.html
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f9adda94346f5e6440f3133c49564182f0f5900d97a927557a0710d87e3dc564
|
||||
size 5155
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a6ca13a1c87edcfbfc91317896452c31a9d49c4768f1b4b46ac32e0907e00a73
|
||||
size 616
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:680166339ff62595dd2d2eed3a79fb9fa0c2e8250e89539f6d678aa2e5e51e26
|
||||
size 597
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/glfw3_8h.html
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/glfw3_8h.html
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d119e0b6e3825d3b660f5546eba05f9b2c71bb4b975229c4a278e7519fd7f719
|
||||
size 270848
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:648371771350e73b710fde8c00a4db4402ccfcbcb95d5ea47dae86504e49f43d
|
||||
size 272205
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:98b88ee86448b958289488d57cb34eab6933c2e1b8c3f75b55791eb28796dd7b
|
||||
size 21427
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b2841e2ba50a5a0be23b7c90cbf10f2029a9e3d51094c27d76db2b6b07dd04c5
|
||||
size 45332
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c3b808241c20593f7bdee6df0cfea52ce026ac7f661be1494cbf8f07294200ea
|
||||
size 14663
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a579ab7f8eaa0bdcbd9607b3e0674912ca5d582941e934c7e8dfdd7f20d56467
|
||||
size 22599
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:97a2ea7dcd219e5017bc4cd1b762945fd9ab5c40f034f77e92273b3ff8f8d2de
|
||||
size 20755
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6bde9824bee47936b3904e8b97137c4907abc231a105780734f5b3641cf5e8c8
|
||||
size 9849
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:940a0c9c5af60d02e987887df37da15196e4db18cf949f5fb6de7581d6565470
|
||||
size 22572
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:13f26b3cbdca0e424f4fca2693c92ec75f1109b530c0bd7ae539f0dbd34220d9
|
||||
size 12705
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ba4a58fed3bbf8f96165c2faeb6b2ea118e127029ee3ddeaf7b1dfa392bc3d51
|
||||
size 37533
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:10632ad8d70492f2558bb5a440fc824ae9083854d235cb44b3c73ff2cda7d5ab
|
||||
size 182975
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6ba83b1b81d01471476636226034abd3c109042d7bcc7f681bec49127cf08561
|
||||
size 18263
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3a730d5994eb78da3130f2e696b98cfdbaf54ff84abe536bcd241c13d4002224
|
||||
size 109417
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bd6ddc9c744cc7edda422e962e8179a2f20b77a88b0433747874168dd5a5225b
|
||||
size 10673
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6192b77cbd9254035aaf78b2755646780e8b36fa2aa5c2cd342b583f7afe66a9
|
||||
size 61793
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:984bc78067a6497586708765e535ea44e1b83e18a93c800351a5ec27cdfadb63
|
||||
size 61535
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3426b5c8e915bf49a5373816053f2c6e121ba3f19e224f21c3300fefefbbfa99
|
||||
size 10298
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:556f871b16556128234517f8f8a72718896f123883984213d577999363cbbaf3
|
||||
size 27064
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:38fad2b956026a759da2271a348dac51e1805b9b03cdd3cbeb5a9cf71343c481
|
||||
size 265199
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/index.html
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/index.html
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2efda205368e903feb7325b87dea9c0e71350521badaf67e5429a233e8ee995b
|
||||
size 5300
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:acf9fa7ebc991ab59f31be1589f14a6819ab63ce7bf28e90ea082e6cdd175329
|
||||
size 2755
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:823d17204acd7c914eb588e76f35aff7383c8e157261807b98ac492da6efd395
|
||||
size 89720
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ff2add1b5245965b568619b7d105a6457821067c15a2d5753eb33c6d60a31c41
|
||||
size 2761
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3e6d440f070ec7843a0edb9366f09eefd46929d03d2f4bf4e7935b6b601eb530
|
||||
size 8383
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8511112db94f6079dae68bfb8a5598e725911b50382d7a1d72c3fed06f524baf
|
||||
size 2755
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3d0bd35f2a10e64b0c6b8c1cd801cc0b587a192657de9b1748242482c4ac40cc
|
||||
size 34590
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/jquery.js
vendored
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/jquery.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cbaceab3ee0a51f3868bd8c060e03e18ae0b341d2e636666c87040f82a984cd2
|
||||
size 176813
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bf64d2178acba52d526988fc1c5219577c55a38331a5b11254266d9c77fc3160
|
||||
size 2753
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/menu.js
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/menu.js
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:47a5c5d9d8d63513444f3209c59af9390e5bf808db1fb0db8e9ef963eb33a277
|
||||
size 5866
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/menudata.js
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/menudata.js
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b8e2175c6f4cf302bc38cb578121be07d51706d579f8aadf43c2852724b57065
|
||||
size 1508
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/modules.html
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/modules.html
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:85e6a3c6a5bac3507a976cbbc5885d0d85ddaa507709f4246e3fe4ea2bcc7e2c
|
||||
size 7046
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:689c79831993c30838d729a16f095bff400926e899b5dae0a03ee6f3352a11b5
|
||||
size 2759
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f5d5102284dad739935fb22bd898c69fa99c9f345a7862b83ecaaad6bc45ecc0
|
||||
size 26784
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4975f428a958a301b4ab4134c1321fd9ae2b1894602904cb1150986553afc02c
|
||||
size 2757
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2a7b39ecda2b35f85e512b9f49276be875a61511ab9a501d63afd84c94a26323
|
||||
size 45936
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/nav_f.png
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/nav_f.png
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4bdc6a72666e1b300fdfc5ecf102714c9fd57df76fdf47139f8dbf8ae5986364
|
||||
size 153
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/nav_g.png
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/nav_g.png
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3171164c16baa5953c17821a7ce5feac673c05a56b287453ce3a0bf5048f0999
|
||||
size 95
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/nav_h.png
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/nav_h.png
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b7711604d6cdeaf3cdfd661fa21fc5bf18de929671c801f00415eaecd35abda3
|
||||
size 98
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/news.html
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/news.html
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3d8ce044163c707769b42855b76fe1984084d442603bed534eed6ddc74c63e22
|
||||
size 63023
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7dda20773332642fd7cc4e0c68f6a9936564dd97e13a60cf2b86dfc6dd1c974a
|
||||
size 2753
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/open.png
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/open.png
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a04665e9dd0ef5ef2c6ddf02b4a12472984485adb027fd12ae6c60ffd203b1a4
|
||||
size 123
|
||||
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/pages.html
Normal file
3
windows/lib/glfw-3.3.8.bin.WIN64/docs/html/pages.html
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cca379aca020645c2a60c0c7c1a0487918d54e955c20694ed399f55da2033163
|
||||
size 5783
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:22cf78e9af476c9a5972f1d35857593324836b1b3ac2f3a03218668364c61cc1
|
||||
size 2755
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ccafd7462bdf2640a54d5c875182b3fd7ef7289ddb67b5897dc38c9836f074cc
|
||||
size 42965
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:90e190ad27e7cc80587bad64dec5dd4f8367ec6fe0f2f7aa5cfbe392b1563268
|
||||
size 1435
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6013cb56abeb88803f4cf46f2405ff309f990718c1221e2300caab8b0ab5836c
|
||||
size 133
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4b07367855325e251af97f25ff27cd5806f17f951d24f6a1fa9211de8da7dcd4
|
||||
size 1435
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4236f8248588b166e432a92b420ee852ea7b36f86c53dc5c5fc27161728eeb7e
|
||||
size 508
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f7cffc142fd67a44ae3d0aeaefabe00ca1671940eebbf5be4c8908dd208ad224
|
||||
size 1436
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8426231e3b3fb97506165892bf1509c786ae839755d1be873bf9e8bfe0288e90
|
||||
size 255
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5d08eb56910f88748245ea754477844da2d8c2b677f3eeae8464d9d7d66372a4
|
||||
size 1436
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:766004c1a5af3583db72d22ed3d5bbef07078273c8bcd3b432128f7d5eeecc64
|
||||
size 436
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b6a51b617117ae6590dcb12c8d0356cb1dad34d781b4ef288011937009bef58c
|
||||
size 1435
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c4983e3cd85d65c06a97513d6630938420ee268c07c7aae2ad849d9d482d3124
|
||||
size 457
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5f8f39ee827401d8391f6993e070e4a01762dca63a1108422b7fcb97a7849719
|
||||
size 1435
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d759939eca4e30f5b2c62399a570c3f5f27f4a45228223d9bee23239140187fe
|
||||
size 95
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user