{"id":16110305,"url":"https://github.com/florianvazelle/poike","last_synced_at":"2025-04-06T05:26:35.211Z","repository":{"id":66992239,"uuid":"383416492","full_name":"florianvazelle/poike","owner":"florianvazelle","description":"A comprehensible Vulkan framework","archived":false,"fork":false,"pushed_at":"2021-07-07T09:36:30.000Z","size":458,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-12T11:14:45.284Z","etag":null,"topics":["cpp20","framework","object-oriented","vulkan"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/florianvazelle.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-07-06T09:40:51.000Z","updated_at":"2024-11-05T06:31:50.000Z","dependencies_parsed_at":"2023-03-13T20:29:03.146Z","dependency_job_id":null,"html_url":"https://github.com/florianvazelle/poike","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florianvazelle%2Fpoike","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florianvazelle%2Fpoike/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florianvazelle%2Fpoike/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/florianvazelle%2Fpoike/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/florianvazelle","download_url":"https://codeload.github.com/florianvazelle/poike/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247439961,"owners_count":20939190,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp20","framework","object-oriented","vulkan"],"created_at":"2024-10-09T19:36:51.205Z","updated_at":"2025-04-06T05:26:35.183Z","avatar_url":"https://github.com/florianvazelle.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003ePoike\u003c/h1\u003e\n  \u003cimg src=\"./poike.svg\"/\u003e\n  \u003ch2\u003eA work in progress comprehensible Vulkan framework\u003c/h2\u003e\n  \u003cdiv\u003e\n    \u003ca href=\"https://github.com/florianvazelle/poike/actions\"\u003e\u003cimg src=\"https://github.com/florianvazelle/poike/workflows/build/badge.svg\"/\u003e\u003c/a\u003e\n    \u003cimg src=\"https://app.codacy.com/project/badge/Grade/289ed3c67b1d42f5a10a17a25de1c969\"/\u003e\n    \u003cimg src=\"https://img.shields.io/badge/platform-windows%20%7C%20linux%20%7C%20android-blue\"/\u003e\n    \u003ca href=\"https://github.com/florianvazelle/poike/blob/main/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/github/license/florianvazelle/poike\"/\u003e\u003c/a\u003e\n    \u003ca href=\"https://tokei.rs\"\u003e\u003cimg src=\"https://tokei.rs/b1/github/florianvazelle/poike?category=code\"/\u003e\u003c/a\u003e\n  \u003c/div\u003e\n\u003c/div\u003e\n\n## Building\n\n### Build and run test suite\n\nUse the following command to build and run the test suite.\n\n```bash\ncmake -Bbuild\ncmake --build build\n./build/bin/poikeTests\n```\n\n### Developement\n\nTo run it with [include-what-you-use](https://github.com/include-what-you-use/include-what-you-use) :\n```bash\nsudo apt install llvm-10-dev libclang-10-dev clang-10\ngit clone https://github.com/include-what-you-use/include-what-you-use.git iwyu\n\ncd iwyu\ngit checkout clang_10\n\nmkdir build\ncd build\n\ncmake -G \"Unix Makefiles\" -DCMAKE_PREFIX_PATH=/usr/lib/llvm-10 ..\n\ncd ..\nCC=\"clang\" CXX=\"clang++\" cmake -DCMAKE_CXX_INCLUDE_WHAT_YOU_USE=\"iwyu/build/bin/include-what-you-use;-Xiwyu;any;-Xiwyu;iwyu;-Xiwyu;args\" -Bbuild\ncmake --build build 2\u003e iwyu.log\n```\n\n## Dependencies\n\n- C++20 compiler :\n  - Visual Studio 2019\n  - GCC 9+ or Clang 10+\n- [CMake](https://cmake.org/) for build system creation (\u003e= 3.16.3)\n- [Conan](https://conan.io/) for install packages (\u003e= 1.0)\n- [Doxygen](https://doxygen.org/) for generate documentation (\u003e= 1.8, optional)\n\n## References\n\n- [Writing an Efficient Vulkan Renderer](https://zeux.io/2020/02/27/writing-an-efficient-vulkan-renderer/)\n- [Vulkan Shader Resource-Binding](https://developer.nvidia.com/vulkan-shader-resource-binding)\n- [Vulkan Input Attachments and Sub Passes](https://www.saschawillems.de/blog/2018/07/19/vulkan-input-attachments-and-sub-passes/)\n- [Yet Another Blog Explaining Vulkan Synchronization](https://themaister.net/blog/2019/08/14/yet-another-blog-explaining-vulkan-synchronization/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflorianvazelle%2Fpoike","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflorianvazelle%2Fpoike","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflorianvazelle%2Fpoike/lists"}