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

https://github.com/raphgl/opengltutorial

LearnOpenGL follow-along code with concise explanations in C11
https://github.com/raphgl/opengltutorial

c graphics opengl

Last synced: about 2 months ago
JSON representation

LearnOpenGL follow-along code with concise explanations in C11

Awesome Lists containing this project

README

          

# OpenGL Tutorial
The code I wrote while following the [LearnOpenGL](https://learnopengl.com/Getting-started/) tutorial.
The original tutorial is written in C++ but this tutorial is completely in C11. The goal of this repo is to provide an easy way for me learn and recall opengl, by providing concise explanations of what and why things are the way they are.

### Table of Contents

| Tutorial | Source Code |
| -------- | ----------- |
| [Hello Triangle](https://learnopengl.com/Getting-started/Hello-Triangle) | [hello-triangle.c](https://github.com/RaphGL/OpenGLTutorial/blob/main/src/hello-triangle.c) |