Mercurial > hg > beaglert
annotate examples/core/render.cpp @ 450:d2dfa1718edb prerelease
Added core example project, which allows editing of the core Bela source in the IDE. It requires 'building' in update_board
author | Liam Donovan <l.b.donovan@qmul.ac.uk> |
---|---|
date | Sun, 19 Jun 2016 22:28:34 +0100 |
parents | |
children |
rev | line source |
---|---|
l@450 | 1 #include <Bela.h> |
l@450 | 2 |
l@450 | 3 bool setup(BelaContext *context, void *userData) |
l@450 | 4 { |
l@450 | 5 return true; |
l@450 | 6 } |
l@450 | 7 |
l@450 | 8 void render(BelaContext *context, void *userData) |
l@450 | 9 { |
l@450 | 10 |
l@450 | 11 } |
l@450 | 12 |
l@450 | 13 void cleanup(BelaContext *context, void *userData) |
l@450 | 14 { |
l@450 | 15 |
l@450 | 16 } |