comparison examples/01-Basics/minimal/render.cpp @ 536:b97fe1dc4278 prerelease

merge
author Liam Donovan <l.b.donovan@qmul.ac.uk>
date Thu, 23 Jun 2016 21:24:45 +0100
parents 2ec36efb2c52
children 8f8809c77dda
comparison
equal deleted inserted replaced
535:d0414ec15f63 536:b97fe1dc4278
93 93
94 Function arguments 94 Function arguments
95 ------------------ 95 ------------------
96 `setup()`, `render()` and `cleanup()` each take the same arguments. These are: 96 `setup()`, `render()` and `cleanup()` each take the same arguments. These are:
97 97
98 `0ext *context` 98 `BelaContext *context`
99 `void *userData` 99 `void *userData`
100 100
101 These arguments are pointers to data structures. The main one that's used is 101 These arguments are pointers to data structures. The main one that's used is
102 `context`, which is a pointer to a data structure containing lots of information 102 `context`, which is a pointer to a data structure containing lots of information
103 you need. 103 you need.