Skip to content

seemsindie/learnbgfx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LearnOpenGL Examples with SDL and bgfx

This repository contains examples from LearnOpenGL implemented using SDL and bgfx. Works currently on macOS, Linux and Windows. Planning to add more examples from LearnOpenGL and more platforms support.

Clone the repo

git clone https://github.com/seemsindie/learnbgfx.git
cd learnopengl-sdl-bgfx

Building the project

Note: on Windows install nasm (SDL image requierment) with winget install nasm -i

With ninja

mkdir build
cd build
cmake -G Ninja ..
ninja # compile it all

With make

mkdir build
cd build
cmake ..
make # compile it all

You can also list targets with

ninja -t targets

# and build a specific target with
ninja <target>

About

Examples from https://learnopengl.com/ implemented with SDL2, cglm and bgfx in C

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published