Simple C ++, opengl game engine for Linux?

I was wondering if anyone knew of a simple opengl game engine for Linux, where the source is readable.

I basically want to read the source to get a better idea of ​​how things are put together, without worrying that the code is cross-platform or has particle fantasy effects or something else.

+2
source share
5 answers

You May Be Interested In Irrlicht

+6
source

Check out DevMaster , a website with lots of game programming information and a 3D engine database .

+1
0

SDL supports OpenGL, is open source, and you can port your game to Windows if you want. I used it to write a Tetris program. It supports C and C ++.

-1
source

A simple engine for beginners, written in C ++, contains samples for starting and a sample game project for study: D'Enfent Engine

-1
source

Source: https://habr.com/ru/post/1719722/


All Articles