comparison examples/01-Basics/minimal/render.cpp @ 533:2ec36efb2c52 prerelease

Added tremolo to audio examples.
author Robert Jack <robert.h.jack@gmail.com>
date Thu, 23 Jun 2016 21:17:16 +0100
parents 1cec96845a23
children 8f8809c77dda
comparison
equal deleted inserted replaced
532:53ce8eac833c 533:2ec36efb2c52
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.