https://github.com/pythonista7/dx-ball-opengl
Re-make of the classic Atari breakout using OpenGL
https://github.com/pythonista7/dx-ball-opengl
atari breakout cpp opengl
Last synced: 4 months ago
JSON representation
Re-make of the classic Atari breakout using OpenGL
- Host: GitHub
- URL: https://github.com/pythonista7/dx-ball-opengl
- Owner: Pythonista7
- Created: 2020-03-16T16:53:13.000Z (almost 6 years ago)
- Default Branch: menus
- Last Pushed: 2020-09-15T10:58:40.000Z (over 5 years ago)
- Last Synced: 2025-06-04T17:21:56.585Z (8 months ago)
- Topics: atari, breakout, cpp, opengl
- Language: C++
- Homepage:
- Size: 182 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Demo

# Requriments
(assuming you have g++ installed else please get that too)
sudo apt-get install freeglut3-dev
sudo apt-get install libglew-dev
sudo apt-get install libglfw3 libglfw3-dev
# To execute:
$make all
$./glutitout
## Here are some common bugs that you may run into:
Application crashes at glutInitContextVersion( 2, 1 ); with error glXCreateContextAttribsARB not found - This means your GPU does not support the glXCreateContextAttribsARB OpenGL extension. This also means your GPU does not support OpenGL 3.0 and later. For now, comment glutInitContextVersion( 2, 1 ); out. When we get to the GLEW and Extensions tutorials, we'll cover OpenGL extended functionality.