An open API service indexing awesome lists of open source software.

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

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
----