https://github.com/mixih/tinygfx
A small graphics engine implemented on OpenGL 4 and Vulkan
https://github.com/mixih/tinygfx
Last synced: 3 months ago
JSON representation
A small graphics engine implemented on OpenGL 4 and Vulkan
- Host: GitHub
- URL: https://github.com/mixih/tinygfx
- Owner: Mixih
- Created: 2023-10-31T02:47:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-31T02:54:16.000Z (over 2 years ago)
- Last Synced: 2025-12-26T20:57:45.599Z (6 months ago)
- Language: CMake
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
= TinyGFX
The minimal graphics engine
== Description
TinyGFX is a small experimental graphics engine to try out the low-level features of
modern graphics APIs. Here are some highlights of current functionality
* WIP
== Development
The battle tested cmake commands work for building the project:
[source,bash]
----
$ mkdir build
$ cd build
$ cmake -DMAKE_BUILD_TYPE=Release ..
$ make -j
----
However, a convenience Makefile has been shipped in the root that will create a debug
build. This can be run as follows:
[source,bash]
----
$ make -j all
----