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
- Host: GitHub
- URL: https://github.com/raphgl/opengltutorial
- Owner: RaphGL
- License: mit
- Created: 2023-08-17T18:39:34.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-19T14:43:48.000Z (almost 3 years ago)
- Last Synced: 2023-08-19T16:08:42.531Z (almost 3 years ago)
- Topics: c, graphics, opengl
- Language: C
- Homepage:
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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) |