Genetic generation of cars in a 2D environment
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
Joshua Moerman fc5994910d initial commit 10 years ago
GLEssentials initial commit 10 years ago
OSXGLEssentials.xcodeproj initial commit 10 years ago
iOSGLEssentials.xcodeproj initial commit 10 years ago
.gitignore initial commit 10 years ago
README.md initial commit 10 years ago
Readme.txt initial commit 10 years ago

README.md

GLMinimals

Very minimaal Xcode projects for OpenGL apps (both OSX and iOS).

Motivation

I wanted a unified framework for OpenGL on both OSX and iOS without to much of a hassle (less is more). Just to play around easily and to see what the differences are between OSX and iOS. However, the sample code "GLEssentials" provided by Apple was very outdated, so I modernized it.

Changes include:

  • Converted to ARC
  • Usage of obj-c modules
  • Usage of GLKit (instead of doing everything by hand with EAGLayers and the like)
  • Removed their basic glUtils (as such functionality is in GLKit anyways)
  • Restructered project and a lot of simplifications
  • Retina is supported by default

Where to plug in

Just change Game.h and Game.mm to whatever you like. Note that everything in there is hardcoded and should not be regarded as example code.