├── .clang-format ├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab-ci ├── build-cmake-mingw.sh ├── build-meson.sh ├── clang-format.sh ├── mingw32.cmake └── mingw64.cmake ├── .mailmap ├── Android.mk ├── CMakeLists.txt ├── HACKING.txt ├── LICENSE.txt ├── Options.cmake ├── README.md ├── bin └── waffle-enum ├── cmake └── Modules │ ├── .gitignore │ ├── GNUInstallDirs.cmake │ ├── WaffleCMocka.cmake │ ├── WaffleCheckThreadLocalStorage.cmake │ ├── WaffleConfig.cmake.in │ ├── WaffleDefineCompilerFlags.cmake │ ├── WaffleDefineInternalOptions.cmake │ ├── WaffleDefineOS.cmake │ ├── WaffleDefineVersion.cmake │ ├── WaffleFindDependencies.cmake │ ├── WafflePrintConfigurationSummary.cmake │ └── WaffleValidateOptions.cmake ├── doc ├── CMakeLists.txt ├── code-style.txt ├── html │ └── man │ │ ├── index.html │ │ └── manpage.css ├── maintainers │ └── how-to-make-releases.asciidoc ├── meson.build ├── release-notes │ ├── waffle-0.1.txt │ ├── waffle-0.2.txt │ ├── waffle-0.3.0.txt │ ├── waffle-0.3.1.txt │ ├── waffle-1.0.0.txt │ ├── waffle-1.0.1.txt │ ├── waffle-1.1.0.txt │ ├── waffle-1.1.1.txt │ ├── waffle-1.1.2.txt │ ├── waffle-1.2.0.txt │ ├── waffle-1.2.1.txt │ ├── waffle-1.2.2.txt │ ├── waffle-1.3.0.txt │ ├── waffle-1.4.0.txt │ ├── waffle-1.4.1.txt │ ├── waffle-1.4.2.txt │ ├── waffle-1.4.3.txt │ ├── waffle-1.4.4.txt │ ├── waffle-1.5.0.txt │ ├── waffle-1.5.1.txt │ ├── waffle-1.5.2.txt │ ├── waffle-1.6.0.md │ ├── waffle-1.6.1.md │ ├── waffle-1.6.2.md │ ├── waffle-1.6.3.md │ └── waffle-1.7.0.md ├── release-process.txt └── versioning-rules.txt ├── doxygen ├── Doxyfile └── README.txt ├── examples ├── Android.mk ├── CMakeLists.txt ├── Makefile.example ├── README.txt ├── gl_basic.c ├── meson.build └── simple-x11-egl.c ├── include ├── CMakeLists.txt ├── c99_compat.h ├── meson.build └── waffle-1 │ ├── .gitignore │ ├── meson.build │ ├── waffle.h │ ├── waffle_gbm.h │ ├── waffle_glx.h │ ├── waffle_surfaceless_egl.h │ ├── waffle_version.h.in │ ├── waffle_wayland.h │ └── waffle_x11_egl.h ├── man ├── .gitignore ├── CMakeLists.txt ├── common.xsl ├── common │ ├── author-chad.versace.xml │ ├── author-emil.velikov.xml │ ├── author-jordan.l.justen.xml │ ├── copyright.xml │ ├── error-codes.xml │ ├── issues.xml │ ├── legalnotice.xml │ └── return-value.xml ├── html.cmake ├── html.xsl ├── manpage.xsl ├── manpages.cmake ├── meson.build ├── waffle.7.xml ├── waffle_attrib_list.3.xml ├── waffle_config.3.xml ├── waffle_context.3.xml ├── waffle_display.3.xml ├── waffle_dl.3.xml ├── waffle_enum.3.xml ├── waffle_error.3.xml ├── waffle_feature_test_macros.7.xml ├── waffle_gbm.3.xml ├── waffle_get_proc_address.3.xml ├── waffle_glx.3.xml ├── waffle_init.3.xml ├── waffle_is_extension_in_string.3.xml ├── waffle_make_current.3.xml ├── waffle_native.3.xml ├── waffle_teardown.3.xml ├── waffle_wayland.3.xml ├── waffle_window.3.xml ├── waffle_x11_egl.3.xml └── wflinfo.1.xml ├── meson.build ├── meson_options.txt ├── pkg └── macports │ └── Portfile ├── shell-completion ├── bash │ └── wflinfo └── zsh │ └── _wflinfo ├── src ├── CMakeLists.txt ├── meson.build ├── utils │ ├── Android.mk │ ├── CMakeLists.txt │ ├── meson.build │ └── wflinfo.c └── waffle │ ├── CMakeLists.txt │ ├── android │ ├── droid_display.c │ ├── droid_display.h │ ├── droid_platform.c │ ├── droid_platform.h │ ├── droid_surfaceflingerlink.cpp │ ├── droid_surfaceflingerlink.h │ ├── droid_window.c │ └── droid_window.h │ ├── api │ ├── api_object.h │ ├── api_priv.c │ ├── api_priv.h │ ├── waffle_attrib_list.c │ ├── waffle_config.c │ ├── waffle_context.c │ ├── waffle_display.c │ ├── waffle_dl.c │ ├── waffle_enum.c │ ├── waffle_error.c │ ├── waffle_gl_misc.c │ ├── waffle_init.c │ └── waffle_window.c │ ├── cgl │ ├── WaffleGLView.h │ ├── WaffleGLView.m │ ├── cgl_config.h │ ├── cgl_config.m │ ├── cgl_context.h │ ├── cgl_context.m │ ├── cgl_display.h │ ├── cgl_display.m │ ├── cgl_dl.h │ ├── cgl_dl.m │ ├── cgl_error.h │ ├── cgl_error.m │ ├── cgl_platform.h │ ├── cgl_platform.m │ ├── cgl_window.h │ └── cgl_window.m │ ├── core │ ├── wcore_attrib_list.c │ ├── wcore_attrib_list.h │ ├── wcore_attrib_list_unittest.c │ ├── wcore_config.h │ ├── wcore_config_attrs.c │ ├── wcore_config_attrs.h │ ├── wcore_config_attrs_unittest.c │ ├── wcore_context.h │ ├── wcore_display.c │ ├── wcore_display.h │ ├── wcore_error.c │ ├── wcore_error.h │ ├── wcore_error_unittest.c │ ├── wcore_platform.h │ ├── wcore_tinfo.c │ ├── wcore_tinfo.h │ ├── wcore_util.c │ ├── wcore_util.h │ └── wcore_window.h │ ├── egl │ ├── wegl_config.c │ ├── wegl_config.h │ ├── wegl_context.c │ ├── wegl_context.h │ ├── wegl_display.c │ ├── wegl_display.h │ ├── wegl_imports.h │ ├── wegl_platform.c │ ├── wegl_platform.h │ ├── wegl_surface.c │ ├── wegl_surface.h │ ├── wegl_util.c │ └── wegl_util.h │ ├── gbm │ ├── wgbm_config.c │ ├── wgbm_config.h │ ├── wgbm_display.c │ ├── wgbm_display.h │ ├── wgbm_platform.c │ ├── wgbm_platform.h │ ├── wgbm_window.c │ └── wgbm_window.h │ ├── glx │ ├── glx_config.c │ ├── glx_config.h │ ├── glx_context.c │ ├── glx_context.h │ ├── glx_display.c │ ├── glx_display.h │ ├── glx_platform.c │ ├── glx_platform.h │ ├── glx_window.c │ ├── glx_window.h │ └── glx_wrappers.h │ ├── linux │ ├── linux_dl.c │ ├── linux_dl.h │ ├── linux_platform.c │ └── linux_platform.h │ ├── meson.build │ ├── surfaceless_egl │ ├── sl_config.c │ ├── sl_config.h │ ├── sl_display.c │ ├── sl_display.h │ ├── sl_platform.c │ ├── sl_platform.h │ ├── sl_window.c │ └── sl_window.h │ ├── waffle.def.in │ ├── wayland │ ├── wayland_display.c │ ├── wayland_display.h │ ├── wayland_platform.c │ ├── wayland_platform.h │ ├── wayland_sym.h │ ├── wayland_window.c │ ├── wayland_window.h │ ├── wayland_wrapper.c │ └── wayland_wrapper.h │ ├── wgl │ ├── wgl_config.c │ ├── wgl_config.h │ ├── wgl_context.c │ ├── wgl_context.h │ ├── wgl_display.c │ ├── wgl_display.h │ ├── wgl_dl.c │ ├── wgl_dl.h │ ├── wgl_error.c │ ├── wgl_error.h │ ├── wgl_platform.c │ ├── wgl_platform.h │ ├── wgl_window.c │ └── wgl_window.h │ ├── x11 │ ├── x11_display.c │ ├── x11_display.h │ ├── x11_window.c │ ├── x11_window.h │ └── x11_wrappers.h │ └── xegl │ ├── xegl_display.c │ ├── xegl_display.h │ ├── xegl_platform.c │ ├── xegl_platform.h │ ├── xegl_window.c │ └── xegl_window.h ├── subprojects ├── cmocka.wrap └── opengl_headers │ ├── GL │ └── wglext.h │ └── meson.build ├── tests ├── CMakeLists.txt ├── functional │ ├── CMakeLists.txt │ ├── gl_basic_cocoa.h │ ├── gl_basic_cocoa.m │ ├── gl_basic_test.c │ └── meson.build └── meson.build ├── third_party ├── cmocka │ ├── .clang_complete │ ├── .gitignore │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── CPackConfig.cmake │ ├── CTestConfig.cmake │ ├── ChangeLog │ ├── ConfigureChecks.cmake │ ├── DefineOptions.cmake │ ├── INSTALL │ ├── NEWS │ ├── README │ ├── cmake │ │ └── Modules │ │ │ ├── AddCMockaTest.cmake │ │ │ ├── COPYING-CMAKE-SCRIPTS │ │ │ ├── CheckCCompilerFlagSSP.cmake │ │ │ ├── DefineCMakeDefaults.cmake │ │ │ ├── DefineCompilerFlags.cmake │ │ │ ├── DefineInstallationPaths.cmake │ │ │ ├── DefinePlatformDefaults.cmake │ │ │ ├── FindNSIS.cmake │ │ │ ├── MacroEnsureOutOfSourceBuild.cmake │ │ │ └── UseDoxygen.cmake │ ├── cmocka-build-tree-settings.cmake.in │ ├── cmocka-config-version.cmake.in │ ├── cmocka-config.cmake.in │ ├── cmocka.pc.cmake │ ├── config.h.cmake │ ├── coverity │ │ ├── README │ │ ├── coverity_assert_model.c │ │ └── coverity_internal_model.c │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── doxy.config.in │ │ ├── index.html │ │ └── mainpage.dox │ ├── example │ │ ├── CMakeLists.txt │ │ ├── allocate_module.c │ │ ├── allocate_module_test.c │ │ ├── assert_macro.c │ │ ├── assert_macro.h │ │ ├── assert_macro_test.c │ │ ├── assert_module.c │ │ ├── assert_module.h │ │ ├── assert_module_test.c │ │ ├── calculator.c │ │ ├── calculator_test.c │ │ ├── chef_wrap │ │ │ ├── CMakeLists.txt │ │ │ ├── chef.c │ │ │ ├── chef.h │ │ │ ├── waiter_test_wrap.c │ │ │ └── waiter_test_wrap.h │ │ ├── customer_database.c │ │ ├── customer_database_test.c │ │ ├── database.h │ │ ├── fixture_test.c │ │ ├── key_value.c │ │ ├── key_value.h │ │ ├── key_value_test.c │ │ ├── product_database.c │ │ ├── product_database_test.c │ │ ├── run_tests.c │ │ └── simple_test.c │ ├── include │ │ ├── CMakeLists.txt │ │ ├── cmocka.h │ │ ├── cmocka_pbc.h │ │ ├── cmocka_private.h │ │ └── cmockery │ │ │ ├── cmockery.h │ │ │ └── pbc.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── cmocka.c │ │ └── cmocka.def │ └── tests │ │ ├── CMakeLists.txt │ │ ├── ctest-default.cmake │ │ ├── test_alloc.c │ │ ├── test_assert_macros.c │ │ ├── test_assert_macros_fail.c │ │ ├── test_basics.c │ │ ├── test_cmockery.c │ │ ├── test_exception_handler.c │ │ ├── test_fixtures.c │ │ ├── test_group_fixtures.c │ │ ├── test_group_setup_fail.c │ │ ├── test_setup_fail.c │ │ └── test_skip.c ├── getopt │ ├── CMakeLists.txt │ ├── LICENSE │ ├── getopt.h │ ├── getopt_long.c │ └── meson.build ├── meson.build └── threads │ ├── CMakeLists.txt │ ├── LICENSE │ ├── meson.build │ ├── threads.h │ ├── threads_posix.c │ └── threads_win32.c ├── waffle.pc.in └── www ├── acknowledgements.html ├── features.html ├── index.html ├── releases.html ├── waffle.css └── waffle.jpg /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab-ci/build-cmake-mingw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/.gitlab-ci/build-cmake-mingw.sh -------------------------------------------------------------------------------- /.gitlab-ci/build-meson.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/.gitlab-ci/build-meson.sh -------------------------------------------------------------------------------- /.gitlab-ci/clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/.gitlab-ci/clang-format.sh -------------------------------------------------------------------------------- /.gitlab-ci/mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/.gitlab-ci/mingw32.cmake -------------------------------------------------------------------------------- /.gitlab-ci/mingw64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/.gitlab-ci/mingw64.cmake -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/.mailmap -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/Android.mk -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /HACKING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/HACKING.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/Options.cmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/README.md -------------------------------------------------------------------------------- /bin/waffle-enum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/bin/waffle-enum -------------------------------------------------------------------------------- /cmake/Modules/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/cmake/Modules/.gitignore -------------------------------------------------------------------------------- /cmake/Modules/GNUInstallDirs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/cmake/Modules/GNUInstallDirs.cmake -------------------------------------------------------------------------------- /cmake/Modules/WaffleCMocka.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/cmake/Modules/WaffleCMocka.cmake -------------------------------------------------------------------------------- /cmake/Modules/WaffleCheckThreadLocalStorage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/cmake/Modules/WaffleCheckThreadLocalStorage.cmake -------------------------------------------------------------------------------- /cmake/Modules/WaffleConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/cmake/Modules/WaffleConfig.cmake.in -------------------------------------------------------------------------------- /cmake/Modules/WaffleDefineCompilerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/cmake/Modules/WaffleDefineCompilerFlags.cmake -------------------------------------------------------------------------------- /cmake/Modules/WaffleDefineInternalOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/cmake/Modules/WaffleDefineInternalOptions.cmake -------------------------------------------------------------------------------- /cmake/Modules/WaffleDefineOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/cmake/Modules/WaffleDefineOS.cmake -------------------------------------------------------------------------------- /cmake/Modules/WaffleDefineVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/cmake/Modules/WaffleDefineVersion.cmake -------------------------------------------------------------------------------- /cmake/Modules/WaffleFindDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/cmake/Modules/WaffleFindDependencies.cmake -------------------------------------------------------------------------------- /cmake/Modules/WafflePrintConfigurationSummary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/cmake/Modules/WafflePrintConfigurationSummary.cmake -------------------------------------------------------------------------------- /cmake/Modules/WaffleValidateOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/cmake/Modules/WaffleValidateOptions.cmake -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/code-style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/code-style.txt -------------------------------------------------------------------------------- /doc/html/man/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/html/man/index.html -------------------------------------------------------------------------------- /doc/html/man/manpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/html/man/manpage.css -------------------------------------------------------------------------------- /doc/maintainers/how-to-make-releases.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/maintainers/how-to-make-releases.asciidoc -------------------------------------------------------------------------------- /doc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/meson.build -------------------------------------------------------------------------------- /doc/release-notes/waffle-0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-0.1.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-0.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-0.2.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-0.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-0.3.0.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-0.3.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-0.3.1.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.0.0.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.0.1.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.1.0.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.1.1.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.1.2.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.2.0.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.2.1.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.2.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.2.2.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.3.0.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.4.0.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.4.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.4.1.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.4.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.4.2.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.4.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.4.3.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.4.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.4.4.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.5.0.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.5.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.5.1.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.5.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.5.2.txt -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.6.0.md -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.6.1.md -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.6.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.6.2.md -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.6.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.6.3.md -------------------------------------------------------------------------------- /doc/release-notes/waffle-1.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-notes/waffle-1.7.0.md -------------------------------------------------------------------------------- /doc/release-process.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/release-process.txt -------------------------------------------------------------------------------- /doc/versioning-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doc/versioning-rules.txt -------------------------------------------------------------------------------- /doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doxygen/Doxyfile -------------------------------------------------------------------------------- /doxygen/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/doxygen/README.txt -------------------------------------------------------------------------------- /examples/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/examples/Android.mk -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Makefile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/examples/Makefile.example -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/examples/README.txt -------------------------------------------------------------------------------- /examples/gl_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/examples/gl_basic.c -------------------------------------------------------------------------------- /examples/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/examples/meson.build -------------------------------------------------------------------------------- /examples/simple-x11-egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/examples/simple-x11-egl.c -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/include/CMakeLists.txt -------------------------------------------------------------------------------- /include/c99_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/include/c99_compat.h -------------------------------------------------------------------------------- /include/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/include/meson.build -------------------------------------------------------------------------------- /include/waffle-1/.gitignore: -------------------------------------------------------------------------------- 1 | waffle_version.h 2 | -------------------------------------------------------------------------------- /include/waffle-1/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/include/waffle-1/meson.build -------------------------------------------------------------------------------- /include/waffle-1/waffle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/include/waffle-1/waffle.h -------------------------------------------------------------------------------- /include/waffle-1/waffle_gbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/include/waffle-1/waffle_gbm.h -------------------------------------------------------------------------------- /include/waffle-1/waffle_glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/include/waffle-1/waffle_glx.h -------------------------------------------------------------------------------- /include/waffle-1/waffle_surfaceless_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/include/waffle-1/waffle_surfaceless_egl.h -------------------------------------------------------------------------------- /include/waffle-1/waffle_version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/include/waffle-1/waffle_version.h.in -------------------------------------------------------------------------------- /include/waffle-1/waffle_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/include/waffle-1/waffle_wayland.h -------------------------------------------------------------------------------- /include/waffle-1/waffle_x11_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/include/waffle-1/waffle_x11_egl.h -------------------------------------------------------------------------------- /man/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/.gitignore -------------------------------------------------------------------------------- /man/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/CMakeLists.txt -------------------------------------------------------------------------------- /man/common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/common.xsl -------------------------------------------------------------------------------- /man/common/author-chad.versace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/common/author-chad.versace.xml -------------------------------------------------------------------------------- /man/common/author-emil.velikov.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/common/author-emil.velikov.xml -------------------------------------------------------------------------------- /man/common/author-jordan.l.justen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/common/author-jordan.l.justen.xml -------------------------------------------------------------------------------- /man/common/copyright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/common/copyright.xml -------------------------------------------------------------------------------- /man/common/error-codes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/common/error-codes.xml -------------------------------------------------------------------------------- /man/common/issues.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/common/issues.xml -------------------------------------------------------------------------------- /man/common/legalnotice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/common/legalnotice.xml -------------------------------------------------------------------------------- /man/common/return-value.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/common/return-value.xml -------------------------------------------------------------------------------- /man/html.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/html.cmake -------------------------------------------------------------------------------- /man/html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/html.xsl -------------------------------------------------------------------------------- /man/manpage.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/manpage.xsl -------------------------------------------------------------------------------- /man/manpages.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/manpages.cmake -------------------------------------------------------------------------------- /man/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/meson.build -------------------------------------------------------------------------------- /man/waffle.7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle.7.xml -------------------------------------------------------------------------------- /man/waffle_attrib_list.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_attrib_list.3.xml -------------------------------------------------------------------------------- /man/waffle_config.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_config.3.xml -------------------------------------------------------------------------------- /man/waffle_context.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_context.3.xml -------------------------------------------------------------------------------- /man/waffle_display.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_display.3.xml -------------------------------------------------------------------------------- /man/waffle_dl.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_dl.3.xml -------------------------------------------------------------------------------- /man/waffle_enum.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_enum.3.xml -------------------------------------------------------------------------------- /man/waffle_error.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_error.3.xml -------------------------------------------------------------------------------- /man/waffle_feature_test_macros.7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_feature_test_macros.7.xml -------------------------------------------------------------------------------- /man/waffle_gbm.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_gbm.3.xml -------------------------------------------------------------------------------- /man/waffle_get_proc_address.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_get_proc_address.3.xml -------------------------------------------------------------------------------- /man/waffle_glx.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_glx.3.xml -------------------------------------------------------------------------------- /man/waffle_init.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_init.3.xml -------------------------------------------------------------------------------- /man/waffle_is_extension_in_string.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_is_extension_in_string.3.xml -------------------------------------------------------------------------------- /man/waffle_make_current.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_make_current.3.xml -------------------------------------------------------------------------------- /man/waffle_native.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_native.3.xml -------------------------------------------------------------------------------- /man/waffle_teardown.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_teardown.3.xml -------------------------------------------------------------------------------- /man/waffle_wayland.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_wayland.3.xml -------------------------------------------------------------------------------- /man/waffle_window.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_window.3.xml -------------------------------------------------------------------------------- /man/waffle_x11_egl.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/waffle_x11_egl.3.xml -------------------------------------------------------------------------------- /man/wflinfo.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/man/wflinfo.1.xml -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/meson_options.txt -------------------------------------------------------------------------------- /pkg/macports/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/pkg/macports/Portfile -------------------------------------------------------------------------------- /shell-completion/bash/wflinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/shell-completion/bash/wflinfo -------------------------------------------------------------------------------- /shell-completion/zsh/_wflinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/shell-completion/zsh/_wflinfo -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/utils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/utils/Android.mk -------------------------------------------------------------------------------- /src/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/utils/CMakeLists.txt -------------------------------------------------------------------------------- /src/utils/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/utils/meson.build -------------------------------------------------------------------------------- /src/utils/wflinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/utils/wflinfo.c -------------------------------------------------------------------------------- /src/waffle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/CMakeLists.txt -------------------------------------------------------------------------------- /src/waffle/android/droid_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/android/droid_display.c -------------------------------------------------------------------------------- /src/waffle/android/droid_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/android/droid_display.h -------------------------------------------------------------------------------- /src/waffle/android/droid_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/android/droid_platform.c -------------------------------------------------------------------------------- /src/waffle/android/droid_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/android/droid_platform.h -------------------------------------------------------------------------------- /src/waffle/android/droid_surfaceflingerlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/android/droid_surfaceflingerlink.cpp -------------------------------------------------------------------------------- /src/waffle/android/droid_surfaceflingerlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/android/droid_surfaceflingerlink.h -------------------------------------------------------------------------------- /src/waffle/android/droid_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/android/droid_window.c -------------------------------------------------------------------------------- /src/waffle/android/droid_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/android/droid_window.h -------------------------------------------------------------------------------- /src/waffle/api/api_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/api/api_object.h -------------------------------------------------------------------------------- /src/waffle/api/api_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/api/api_priv.c -------------------------------------------------------------------------------- /src/waffle/api/api_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/api/api_priv.h -------------------------------------------------------------------------------- /src/waffle/api/waffle_attrib_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/api/waffle_attrib_list.c -------------------------------------------------------------------------------- /src/waffle/api/waffle_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/api/waffle_config.c -------------------------------------------------------------------------------- /src/waffle/api/waffle_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/api/waffle_context.c -------------------------------------------------------------------------------- /src/waffle/api/waffle_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/api/waffle_display.c -------------------------------------------------------------------------------- /src/waffle/api/waffle_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/api/waffle_dl.c -------------------------------------------------------------------------------- /src/waffle/api/waffle_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/api/waffle_enum.c -------------------------------------------------------------------------------- /src/waffle/api/waffle_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/api/waffle_error.c -------------------------------------------------------------------------------- /src/waffle/api/waffle_gl_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/api/waffle_gl_misc.c -------------------------------------------------------------------------------- /src/waffle/api/waffle_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/api/waffle_init.c -------------------------------------------------------------------------------- /src/waffle/api/waffle_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/api/waffle_window.c -------------------------------------------------------------------------------- /src/waffle/cgl/WaffleGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/WaffleGLView.h -------------------------------------------------------------------------------- /src/waffle/cgl/WaffleGLView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/WaffleGLView.m -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_config.h -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_config.m -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_context.h -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_context.m -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_display.h -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_display.m -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_dl.h -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_dl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_dl.m -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_error.h -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_error.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_error.m -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_platform.h -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_platform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_platform.m -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_window.h -------------------------------------------------------------------------------- /src/waffle/cgl/cgl_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/cgl/cgl_window.m -------------------------------------------------------------------------------- /src/waffle/core/wcore_attrib_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_attrib_list.c -------------------------------------------------------------------------------- /src/waffle/core/wcore_attrib_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_attrib_list.h -------------------------------------------------------------------------------- /src/waffle/core/wcore_attrib_list_unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_attrib_list_unittest.c -------------------------------------------------------------------------------- /src/waffle/core/wcore_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_config.h -------------------------------------------------------------------------------- /src/waffle/core/wcore_config_attrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_config_attrs.c -------------------------------------------------------------------------------- /src/waffle/core/wcore_config_attrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_config_attrs.h -------------------------------------------------------------------------------- /src/waffle/core/wcore_config_attrs_unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_config_attrs_unittest.c -------------------------------------------------------------------------------- /src/waffle/core/wcore_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_context.h -------------------------------------------------------------------------------- /src/waffle/core/wcore_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_display.c -------------------------------------------------------------------------------- /src/waffle/core/wcore_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_display.h -------------------------------------------------------------------------------- /src/waffle/core/wcore_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_error.c -------------------------------------------------------------------------------- /src/waffle/core/wcore_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_error.h -------------------------------------------------------------------------------- /src/waffle/core/wcore_error_unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_error_unittest.c -------------------------------------------------------------------------------- /src/waffle/core/wcore_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_platform.h -------------------------------------------------------------------------------- /src/waffle/core/wcore_tinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_tinfo.c -------------------------------------------------------------------------------- /src/waffle/core/wcore_tinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_tinfo.h -------------------------------------------------------------------------------- /src/waffle/core/wcore_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_util.c -------------------------------------------------------------------------------- /src/waffle/core/wcore_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_util.h -------------------------------------------------------------------------------- /src/waffle/core/wcore_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/core/wcore_window.h -------------------------------------------------------------------------------- /src/waffle/egl/wegl_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/egl/wegl_config.c -------------------------------------------------------------------------------- /src/waffle/egl/wegl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/egl/wegl_config.h -------------------------------------------------------------------------------- /src/waffle/egl/wegl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/egl/wegl_context.c -------------------------------------------------------------------------------- /src/waffle/egl/wegl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/egl/wegl_context.h -------------------------------------------------------------------------------- /src/waffle/egl/wegl_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/egl/wegl_display.c -------------------------------------------------------------------------------- /src/waffle/egl/wegl_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/egl/wegl_display.h -------------------------------------------------------------------------------- /src/waffle/egl/wegl_imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/egl/wegl_imports.h -------------------------------------------------------------------------------- /src/waffle/egl/wegl_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/egl/wegl_platform.c -------------------------------------------------------------------------------- /src/waffle/egl/wegl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/egl/wegl_platform.h -------------------------------------------------------------------------------- /src/waffle/egl/wegl_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/egl/wegl_surface.c -------------------------------------------------------------------------------- /src/waffle/egl/wegl_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/egl/wegl_surface.h -------------------------------------------------------------------------------- /src/waffle/egl/wegl_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/egl/wegl_util.c -------------------------------------------------------------------------------- /src/waffle/egl/wegl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/egl/wegl_util.h -------------------------------------------------------------------------------- /src/waffle/gbm/wgbm_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/gbm/wgbm_config.c -------------------------------------------------------------------------------- /src/waffle/gbm/wgbm_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/gbm/wgbm_config.h -------------------------------------------------------------------------------- /src/waffle/gbm/wgbm_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/gbm/wgbm_display.c -------------------------------------------------------------------------------- /src/waffle/gbm/wgbm_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/gbm/wgbm_display.h -------------------------------------------------------------------------------- /src/waffle/gbm/wgbm_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/gbm/wgbm_platform.c -------------------------------------------------------------------------------- /src/waffle/gbm/wgbm_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/gbm/wgbm_platform.h -------------------------------------------------------------------------------- /src/waffle/gbm/wgbm_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/gbm/wgbm_window.c -------------------------------------------------------------------------------- /src/waffle/gbm/wgbm_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/gbm/wgbm_window.h -------------------------------------------------------------------------------- /src/waffle/glx/glx_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/glx/glx_config.c -------------------------------------------------------------------------------- /src/waffle/glx/glx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/glx/glx_config.h -------------------------------------------------------------------------------- /src/waffle/glx/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/glx/glx_context.c -------------------------------------------------------------------------------- /src/waffle/glx/glx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/glx/glx_context.h -------------------------------------------------------------------------------- /src/waffle/glx/glx_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/glx/glx_display.c -------------------------------------------------------------------------------- /src/waffle/glx/glx_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/glx/glx_display.h -------------------------------------------------------------------------------- /src/waffle/glx/glx_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/glx/glx_platform.c -------------------------------------------------------------------------------- /src/waffle/glx/glx_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/glx/glx_platform.h -------------------------------------------------------------------------------- /src/waffle/glx/glx_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/glx/glx_window.c -------------------------------------------------------------------------------- /src/waffle/glx/glx_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/glx/glx_window.h -------------------------------------------------------------------------------- /src/waffle/glx/glx_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/glx/glx_wrappers.h -------------------------------------------------------------------------------- /src/waffle/linux/linux_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/linux/linux_dl.c -------------------------------------------------------------------------------- /src/waffle/linux/linux_dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/linux/linux_dl.h -------------------------------------------------------------------------------- /src/waffle/linux/linux_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/linux/linux_platform.c -------------------------------------------------------------------------------- /src/waffle/linux/linux_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/linux/linux_platform.h -------------------------------------------------------------------------------- /src/waffle/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/meson.build -------------------------------------------------------------------------------- /src/waffle/surfaceless_egl/sl_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/surfaceless_egl/sl_config.c -------------------------------------------------------------------------------- /src/waffle/surfaceless_egl/sl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/surfaceless_egl/sl_config.h -------------------------------------------------------------------------------- /src/waffle/surfaceless_egl/sl_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/surfaceless_egl/sl_display.c -------------------------------------------------------------------------------- /src/waffle/surfaceless_egl/sl_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/surfaceless_egl/sl_display.h -------------------------------------------------------------------------------- /src/waffle/surfaceless_egl/sl_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/surfaceless_egl/sl_platform.c -------------------------------------------------------------------------------- /src/waffle/surfaceless_egl/sl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/surfaceless_egl/sl_platform.h -------------------------------------------------------------------------------- /src/waffle/surfaceless_egl/sl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/surfaceless_egl/sl_window.c -------------------------------------------------------------------------------- /src/waffle/surfaceless_egl/sl_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/surfaceless_egl/sl_window.h -------------------------------------------------------------------------------- /src/waffle/waffle.def.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/waffle.def.in -------------------------------------------------------------------------------- /src/waffle/wayland/wayland_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wayland/wayland_display.c -------------------------------------------------------------------------------- /src/waffle/wayland/wayland_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wayland/wayland_display.h -------------------------------------------------------------------------------- /src/waffle/wayland/wayland_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wayland/wayland_platform.c -------------------------------------------------------------------------------- /src/waffle/wayland/wayland_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wayland/wayland_platform.h -------------------------------------------------------------------------------- /src/waffle/wayland/wayland_sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wayland/wayland_sym.h -------------------------------------------------------------------------------- /src/waffle/wayland/wayland_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wayland/wayland_window.c -------------------------------------------------------------------------------- /src/waffle/wayland/wayland_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wayland/wayland_window.h -------------------------------------------------------------------------------- /src/waffle/wayland/wayland_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wayland/wayland_wrapper.c -------------------------------------------------------------------------------- /src/waffle/wayland/wayland_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wayland/wayland_wrapper.h -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_config.c -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_config.h -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_context.c -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_context.h -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_display.c -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_display.h -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_dl.c -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_dl.h -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_error.c -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_error.h -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_platform.c -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_platform.h -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_window.c -------------------------------------------------------------------------------- /src/waffle/wgl/wgl_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/wgl/wgl_window.h -------------------------------------------------------------------------------- /src/waffle/x11/x11_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/x11/x11_display.c -------------------------------------------------------------------------------- /src/waffle/x11/x11_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/x11/x11_display.h -------------------------------------------------------------------------------- /src/waffle/x11/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/x11/x11_window.c -------------------------------------------------------------------------------- /src/waffle/x11/x11_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/x11/x11_window.h -------------------------------------------------------------------------------- /src/waffle/x11/x11_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/x11/x11_wrappers.h -------------------------------------------------------------------------------- /src/waffle/xegl/xegl_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/xegl/xegl_display.c -------------------------------------------------------------------------------- /src/waffle/xegl/xegl_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/xegl/xegl_display.h -------------------------------------------------------------------------------- /src/waffle/xegl/xegl_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/xegl/xegl_platform.c -------------------------------------------------------------------------------- /src/waffle/xegl/xegl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/xegl/xegl_platform.h -------------------------------------------------------------------------------- /src/waffle/xegl/xegl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/xegl/xegl_window.c -------------------------------------------------------------------------------- /src/waffle/xegl/xegl_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/src/waffle/xegl/xegl_window.h -------------------------------------------------------------------------------- /subprojects/cmocka.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/subprojects/cmocka.wrap -------------------------------------------------------------------------------- /subprojects/opengl_headers/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/subprojects/opengl_headers/GL/wglext.h -------------------------------------------------------------------------------- /subprojects/opengl_headers/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/subprojects/opengl_headers/meson.build -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/functional/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/tests/functional/CMakeLists.txt -------------------------------------------------------------------------------- /tests/functional/gl_basic_cocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/tests/functional/gl_basic_cocoa.h -------------------------------------------------------------------------------- /tests/functional/gl_basic_cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/tests/functional/gl_basic_cocoa.m -------------------------------------------------------------------------------- /tests/functional/gl_basic_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/tests/functional/gl_basic_test.c -------------------------------------------------------------------------------- /tests/functional/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/tests/functional/meson.build -------------------------------------------------------------------------------- /tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/tests/meson.build -------------------------------------------------------------------------------- /third_party/cmocka/.clang_complete: -------------------------------------------------------------------------------- 1 | -Iinclude 2 | -------------------------------------------------------------------------------- /third_party/cmocka/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *~$ 3 | build 4 | tags 5 | cscope.* 6 | -------------------------------------------------------------------------------- /third_party/cmocka/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/AUTHORS -------------------------------------------------------------------------------- /third_party/cmocka/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/cmocka/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/COPYING -------------------------------------------------------------------------------- /third_party/cmocka/CPackConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/CPackConfig.cmake -------------------------------------------------------------------------------- /third_party/cmocka/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/CTestConfig.cmake -------------------------------------------------------------------------------- /third_party/cmocka/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/ChangeLog -------------------------------------------------------------------------------- /third_party/cmocka/ConfigureChecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/ConfigureChecks.cmake -------------------------------------------------------------------------------- /third_party/cmocka/DefineOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/DefineOptions.cmake -------------------------------------------------------------------------------- /third_party/cmocka/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/INSTALL -------------------------------------------------------------------------------- /third_party/cmocka/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/cmocka/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/README -------------------------------------------------------------------------------- /third_party/cmocka/cmake/Modules/AddCMockaTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmake/Modules/AddCMockaTest.cmake -------------------------------------------------------------------------------- /third_party/cmocka/cmake/Modules/COPYING-CMAKE-SCRIPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmake/Modules/COPYING-CMAKE-SCRIPTS -------------------------------------------------------------------------------- /third_party/cmocka/cmake/Modules/CheckCCompilerFlagSSP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmake/Modules/CheckCCompilerFlagSSP.cmake -------------------------------------------------------------------------------- /third_party/cmocka/cmake/Modules/DefineCMakeDefaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmake/Modules/DefineCMakeDefaults.cmake -------------------------------------------------------------------------------- /third_party/cmocka/cmake/Modules/DefineCompilerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmake/Modules/DefineCompilerFlags.cmake -------------------------------------------------------------------------------- /third_party/cmocka/cmake/Modules/DefineInstallationPaths.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmake/Modules/DefineInstallationPaths.cmake -------------------------------------------------------------------------------- /third_party/cmocka/cmake/Modules/DefinePlatformDefaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmake/Modules/DefinePlatformDefaults.cmake -------------------------------------------------------------------------------- /third_party/cmocka/cmake/Modules/FindNSIS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmake/Modules/FindNSIS.cmake -------------------------------------------------------------------------------- /third_party/cmocka/cmake/Modules/MacroEnsureOutOfSourceBuild.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmake/Modules/MacroEnsureOutOfSourceBuild.cmake -------------------------------------------------------------------------------- /third_party/cmocka/cmake/Modules/UseDoxygen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmake/Modules/UseDoxygen.cmake -------------------------------------------------------------------------------- /third_party/cmocka/cmocka-build-tree-settings.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmocka-build-tree-settings.cmake.in -------------------------------------------------------------------------------- /third_party/cmocka/cmocka-config-version.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmocka-config-version.cmake.in -------------------------------------------------------------------------------- /third_party/cmocka/cmocka-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmocka-config.cmake.in -------------------------------------------------------------------------------- /third_party/cmocka/cmocka.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/cmocka.pc.cmake -------------------------------------------------------------------------------- /third_party/cmocka/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/config.h.cmake -------------------------------------------------------------------------------- /third_party/cmocka/coverity/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/coverity/README -------------------------------------------------------------------------------- /third_party/cmocka/coverity/coverity_assert_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/coverity/coverity_assert_model.c -------------------------------------------------------------------------------- /third_party/cmocka/coverity/coverity_internal_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/coverity/coverity_internal_model.c -------------------------------------------------------------------------------- /third_party/cmocka/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Build the documentation 3 | # 4 | include(UseDoxygen OPTIONAL) 5 | 6 | -------------------------------------------------------------------------------- /third_party/cmocka/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/doc/Doxyfile.in -------------------------------------------------------------------------------- /third_party/cmocka/doc/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/doc/doxy.config.in -------------------------------------------------------------------------------- /third_party/cmocka/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/doc/index.html -------------------------------------------------------------------------------- /third_party/cmocka/doc/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/doc/mainpage.dox -------------------------------------------------------------------------------- /third_party/cmocka/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/cmocka/example/allocate_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/allocate_module.c -------------------------------------------------------------------------------- /third_party/cmocka/example/allocate_module_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/allocate_module_test.c -------------------------------------------------------------------------------- /third_party/cmocka/example/assert_macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/assert_macro.c -------------------------------------------------------------------------------- /third_party/cmocka/example/assert_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/assert_macro.h -------------------------------------------------------------------------------- /third_party/cmocka/example/assert_macro_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/assert_macro_test.c -------------------------------------------------------------------------------- /third_party/cmocka/example/assert_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/assert_module.c -------------------------------------------------------------------------------- /third_party/cmocka/example/assert_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/assert_module.h -------------------------------------------------------------------------------- /third_party/cmocka/example/assert_module_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/assert_module_test.c -------------------------------------------------------------------------------- /third_party/cmocka/example/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/calculator.c -------------------------------------------------------------------------------- /third_party/cmocka/example/calculator_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/calculator_test.c -------------------------------------------------------------------------------- /third_party/cmocka/example/chef_wrap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/chef_wrap/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/cmocka/example/chef_wrap/chef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/chef_wrap/chef.c -------------------------------------------------------------------------------- /third_party/cmocka/example/chef_wrap/chef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/chef_wrap/chef.h -------------------------------------------------------------------------------- /third_party/cmocka/example/chef_wrap/waiter_test_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/chef_wrap/waiter_test_wrap.c -------------------------------------------------------------------------------- /third_party/cmocka/example/chef_wrap/waiter_test_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/chef_wrap/waiter_test_wrap.h -------------------------------------------------------------------------------- /third_party/cmocka/example/customer_database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/customer_database.c -------------------------------------------------------------------------------- /third_party/cmocka/example/customer_database_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/customer_database_test.c -------------------------------------------------------------------------------- /third_party/cmocka/example/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/database.h -------------------------------------------------------------------------------- /third_party/cmocka/example/fixture_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/fixture_test.c -------------------------------------------------------------------------------- /third_party/cmocka/example/key_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/key_value.c -------------------------------------------------------------------------------- /third_party/cmocka/example/key_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/key_value.h -------------------------------------------------------------------------------- /third_party/cmocka/example/key_value_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/key_value_test.c -------------------------------------------------------------------------------- /third_party/cmocka/example/product_database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/product_database.c -------------------------------------------------------------------------------- /third_party/cmocka/example/product_database_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/product_database_test.c -------------------------------------------------------------------------------- /third_party/cmocka/example/run_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/run_tests.c -------------------------------------------------------------------------------- /third_party/cmocka/example/simple_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/example/simple_test.c -------------------------------------------------------------------------------- /third_party/cmocka/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/include/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/cmocka/include/cmocka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/include/cmocka.h -------------------------------------------------------------------------------- /third_party/cmocka/include/cmocka_pbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/include/cmocka_pbc.h -------------------------------------------------------------------------------- /third_party/cmocka/include/cmocka_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/include/cmocka_private.h -------------------------------------------------------------------------------- /third_party/cmocka/include/cmockery/cmockery.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /third_party/cmocka/include/cmockery/pbc.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /third_party/cmocka/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/src/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/cmocka/src/cmocka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/src/cmocka.c -------------------------------------------------------------------------------- /third_party/cmocka/src/cmocka.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/src/cmocka.def -------------------------------------------------------------------------------- /third_party/cmocka/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/tests/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/cmocka/tests/ctest-default.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/tests/ctest-default.cmake -------------------------------------------------------------------------------- /third_party/cmocka/tests/test_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/tests/test_alloc.c -------------------------------------------------------------------------------- /third_party/cmocka/tests/test_assert_macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/tests/test_assert_macros.c -------------------------------------------------------------------------------- /third_party/cmocka/tests/test_assert_macros_fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/tests/test_assert_macros_fail.c -------------------------------------------------------------------------------- /third_party/cmocka/tests/test_basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/tests/test_basics.c -------------------------------------------------------------------------------- /third_party/cmocka/tests/test_cmockery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/tests/test_cmockery.c -------------------------------------------------------------------------------- /third_party/cmocka/tests/test_exception_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/tests/test_exception_handler.c -------------------------------------------------------------------------------- /third_party/cmocka/tests/test_fixtures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/tests/test_fixtures.c -------------------------------------------------------------------------------- /third_party/cmocka/tests/test_group_fixtures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/tests/test_group_fixtures.c -------------------------------------------------------------------------------- /third_party/cmocka/tests/test_group_setup_fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/tests/test_group_setup_fail.c -------------------------------------------------------------------------------- /third_party/cmocka/tests/test_setup_fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/tests/test_setup_fail.c -------------------------------------------------------------------------------- /third_party/cmocka/tests/test_skip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/cmocka/tests/test_skip.c -------------------------------------------------------------------------------- /third_party/getopt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/getopt/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/getopt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/getopt/LICENSE -------------------------------------------------------------------------------- /third_party/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/getopt/getopt.h -------------------------------------------------------------------------------- /third_party/getopt/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/getopt/getopt_long.c -------------------------------------------------------------------------------- /third_party/getopt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/getopt/meson.build -------------------------------------------------------------------------------- /third_party/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/meson.build -------------------------------------------------------------------------------- /third_party/threads/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/threads/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/threads/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/threads/LICENSE -------------------------------------------------------------------------------- /third_party/threads/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/threads/meson.build -------------------------------------------------------------------------------- /third_party/threads/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/threads/threads.h -------------------------------------------------------------------------------- /third_party/threads/threads_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/threads/threads_posix.c -------------------------------------------------------------------------------- /third_party/threads/threads_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/third_party/threads/threads_win32.c -------------------------------------------------------------------------------- /waffle.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/waffle.pc.in -------------------------------------------------------------------------------- /www/acknowledgements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/www/acknowledgements.html -------------------------------------------------------------------------------- /www/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/www/features.html -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/www/index.html -------------------------------------------------------------------------------- /www/releases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/www/releases.html -------------------------------------------------------------------------------- /www/waffle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/www/waffle.css -------------------------------------------------------------------------------- /www/waffle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waffle-gl/waffle/HEAD/www/waffle.jpg --------------------------------------------------------------------------------