comparison examples/basic/render.cpp @ 314:611306d840b3 prerelease

Merge
author Giulio Moro <giuliomoro@yahoo.it>
date Fri, 27 May 2016 19:00:43 +0100
parents 1feb9c23ac57
children db2fe4e1b88e
comparison
equal deleted inserted replaced
313:c770cdf3d8b2 314:611306d840b3
53 53
54 // The long way, using the buffers directly: 54 // The long way, using the buffers directly:
55 // context->audioOut[n * context->audioChannels + channel] = out; 55 // context->audioOut[n * context->audioChannels + channel] = out;
56 56
57 // Or using the macros: 57 // Or using the macros:
58 audioWriteFrame(context, n, channel, out); 58 audioWrite(context, n, channel, out);
59 } 59 }
60 } 60 }
61 } 61 }
62 62
63 // cleanup() is called once at the end, after the audio has stopped. 63 // cleanup() is called once at the end, after the audio has stopped.