{"id":18508943,"url":"https://github.com/nesktf/shogle","last_synced_at":"2026-05-15T21:06:39.149Z","repository":{"id":231720334,"uuid":"782551135","full_name":"nesktf/shogle","owner":"nesktf","description":"Graphics framework for C++20","archived":false,"fork":false,"pushed_at":"2026-02-23T02:00:08.000Z","size":11076,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-23T05:34:42.101Z","etag":null,"topics":["2d","3d","cpp","cpp20","game-engine","gamedev","glfw","graphics","imgui","opengl"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nesktf.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-05T14:21:44.000Z","updated_at":"2026-02-23T02:00:11.000Z","dependencies_parsed_at":"2025-05-28T21:56:04.180Z","dependency_job_id":"f1bc6c2e-aa0a-4633-8e9c-a53a4728916f","html_url":"https://github.com/nesktf/shogle","commit_stats":null,"previous_names":["nesktf/shogle"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nesktf/shogle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nesktf%2Fshogle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nesktf%2Fshogle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nesktf%2Fshogle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nesktf%2Fshogle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nesktf","download_url":"https://codeload.github.com/nesktf/shogle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nesktf%2Fshogle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33080411,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T20:25:35.270Z","status":"ssl_error","status_checked_at":"2026-05-15T20:25:34.732Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["2d","3d","cpp","cpp20","game-engine","gamedev","glfw","graphics","imgui","opengl"],"created_at":"2024-11-06T15:15:55.049Z","updated_at":"2026-05-15T21:06:39.128Z","avatar_url":"https://github.com/nesktf.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ShOGLE\n\n\u003cdiv align=\"center\"\u003e\n    \u003cpicture\u003e\n        \u003cimg alt=\"shogle\" src=\"./res/shogle.gif\" /\u003e\n    \u003c/picture\u003e\n    \u003ch4\u003eShrimple OpenGL Engine\u003c/h4\u003e\n\u003c/div\u003e\n\nFunny C++20 graphics framework made for my personal projects. Includes basic functions and\nclasses to create a program with GPU accelerated 2D or 3D graphics.\n\n*(yes I rendered the GIF using the engine)*\n\n## Features\n- OpenGL 4.3+ backend with state wrappers\n- Linear algebra library\n- Window creation (using GLFW)\n- Dear ImGUI integration\n- Some basic STL utillities\n\n#### Planned features\n- Vulkan backend \n- Software renderer backend\n- More complex rendering systems (fonts, lighting, ...)\n- Compute pipeline\n- Compile time utillity scripts (for embedding assets)\n- At least Windows support (only supports Linux at the moment)\n- Any other thing that might be useful to me\n\n## Usage\nTo make a static build, first clone the repo somewhere in your project's library folder:\n\n```sh \n$ cd my_funny_project/\n$ mkdir -p lib/\n$ git clone https://github.com/nesktf/shogle.git ./lib/shogle\n```\nYou need the following dependencies installed with your package manager:\n\n- CMake 3.25+\n- GLFW 3.3.8+\n- libfmt 9.1.0+\n\n(Tested on Debian 12 and Arch Linux, it should work fine in other distros as long as you can find\na way to load the dependencies with CMake)\n\n```sh\n$ sudo apt install cmake libglfw3-dev libfmt-dev\n```\n\nThen just add the library as a subdirectory in your CMakeLists.txt:\n\n```cmake\ncmake_minimum_required(VERSION 3.25)\nproject(my_funny_project CXX C)\n# ...\nset(SHOGLE_ENABLE_IMGUI ON) # Optional: Build shogle with ImGUI\nadd_subdirectory(\"lib/shogle\")\n# ...\nset_target_properties(${PROJECT_NAME} PROPERTIES CXX_STANDARD 20)\ntarget_link_libraries(${PROJECT_NAME} shogle)\n```\n\n*(TODO: Shared object build support)*\n\n## Examples\nIf you want to see some basic examples, check out the [examples folder](./examples/). To build\nthem just add `SHOGLE_BUILD_EXAMPLES=1` to your cmake options.\n\n```sh \n$ cmake -B build -DCMAKE_BUILD_TYPE=Debug -DSHOGLE_BUILD_EXAMPLES=1\n$ make -C build -j$(nproc)\n```\n\n## Extra\nIf you want extra functionallity for loading assets, use my other library\n[chimatools](https://github.com/nesktf/chimatools) (or use something else like stb_image).\nYou can find an integration example in the\n[examples folder CMakeLists.txt](./examples/CMakeLists.txt)\n\nYou can also check out some of my other projects that use this framework\n- [danmaku_engine](https://github.com/nesktf/danmaku_engine)\n- [kappa_engine](https://github.com/nesktf/kappa_engine)\n- [lora_gps_tracking](https://github.com/nesktf/lora_gps_tracking) (old library version)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnesktf%2Fshogle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnesktf%2Fshogle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnesktf%2Fshogle/lists"}