├── .gitignore ├── CMakeLists.txt ├── cmake ├── assign_source_group.cmake └── import_library.cmake ├── conanfile.py ├── docs └── images │ ├── example.png │ └── example2.png ├── include └── fg │ ├── framegraph.hpp │ ├── realize.hpp │ ├── render_task.hpp │ ├── render_task_base.hpp │ ├── render_task_builder.hpp │ ├── resource.hpp │ └── resource_base.hpp ├── license.txt ├── readme.md └── tests ├── catch.hpp ├── framegraph_test.cpp └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *build/* -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/assign_source_group.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/cmake/assign_source_group.cmake -------------------------------------------------------------------------------- /cmake/import_library.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/cmake/import_library.cmake -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/conanfile.py -------------------------------------------------------------------------------- /docs/images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/docs/images/example.png -------------------------------------------------------------------------------- /docs/images/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/docs/images/example2.png -------------------------------------------------------------------------------- /include/fg/framegraph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/include/fg/framegraph.hpp -------------------------------------------------------------------------------- /include/fg/realize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/include/fg/realize.hpp -------------------------------------------------------------------------------- /include/fg/render_task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/include/fg/render_task.hpp -------------------------------------------------------------------------------- /include/fg/render_task_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/include/fg/render_task_base.hpp -------------------------------------------------------------------------------- /include/fg/render_task_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/include/fg/render_task_builder.hpp -------------------------------------------------------------------------------- /include/fg/resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/include/fg/resource.hpp -------------------------------------------------------------------------------- /include/fg/resource_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/include/fg/resource_base.hpp -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/readme.md -------------------------------------------------------------------------------- /tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/tests/catch.hpp -------------------------------------------------------------------------------- /tests/framegraph_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/fg/HEAD/tests/framegraph_test.cpp -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" 3 | --------------------------------------------------------------------------------