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

https://github.com/bhallstein/gridpixelrenderer

Pixel grid rendering for retro games, using a texture that is modified then reloaded
https://github.com/bhallstein/gridpixelrenderer

Last synced: 10 months ago
JSON representation

Pixel grid rendering for retro games, using a texture that is modified then reloaded

Awesome Lists containing this project

README

          

# Gridded Pixel Renderer

The important class is the OpenGL3_2Renderer one.

Initialize pixel grid:

-(id) initWithWidth:(int) height:(int)

Get a pointer to the w x h array of ‘Colour’s which you can then modify:

-(Colour*) texDataPointer

Reupload the texture:

-(void) update

-- BH, 1st Oct 2013