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

https://github.com/shresth72/render_gl

Text, Vector and Image Rendering Engine in C with OpenGL, NanoVG and Shaders
https://github.com/shresth72/render_gl

c glfw glsl nanovg opengl shaders

Last synced: 9 months ago
JSON representation

Text, Vector and Image Rendering Engine in C with OpenGL, NanoVG and Shaders

Awesome Lists containing this project

README

          

# render_gl

My C engine for rendering text, images and vectors using nanovg, textures and shaders respectively.

Based on OpenGL and GLFW, and used NanoVG for text rendering

## Run

```bash
make run
```

## Installation
Install dependencies

### 1. Linux
#### Arch
```bash
yay -S libglfw3-dev glew cglm
```

#### Ubuntu
```bash
sudo apt update
sudo apt install libglfw3-dev libglew-dev cglm-dev
```