Home | History | Annotate | Download | only in examples

Lines Matching defs:sl

63             fprintf(stdout, "%u SL failure, exiting\n", res);
67 //fprintf(stdout, "%d SL success, proceeding...\n", res);
105 void TestPlaySawtoothBufferQueue( SLObjectItf sl )
137 /* Get the SL Engine Interface which is implicit */
138 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
278 SLObjectItf sl;
284 res = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
286 /* Realizing the SL Engine in synchronous mode. */
287 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE); CheckErr(res);
290 TestPlaySawtoothBufferQueue(sl);
293 (*sl)->Destroy(sl);