Home | History | Annotate | Download | only in sandbox

Lines Matching defs:interface

40     printf("Display the ID of each available interface\n");
48 printf("interface[%u] ", index);
75 printf("Create engine with NULL interface pointer\n");
95 printf("Create an engine and require non-sensical volume interface\n");
103 printf("Create an engine and politely request a non-sensical interface with options\n");
114 printf("Get each available interface before realization\n");
116 void *interface = NULL;
117 // Use the interface ID as returned by slQuerySupportedEngineInterfaces
118 result = (*engineObject)->GetInterface(engineObject, engine_ids[index], &interface);
121 printf("interface available pre-realize: ");
138 printf("Get each available interface after realization\n");
140 void *interface = NULL;
141 result = (*engineObject)->GetInterface(engineObject, engine_ids[index], &interface);
143 printf("interface[%u] %p = ", index, interface);
145 // Use a copy of the interface ID to make sure lookup is not purely relying on address
150 // Calling GetInterface multiple times should return the same interface
151 assert(interface_again == interface);