Home | History | Annotate | Download | only in video

Lines Matching refs:bootstrap

35 static VideoBootStrap *bootstrap[] = {
177 for ( i=0; bootstrap[i]; ++i ) {
178 if ( SDL_strcasecmp(bootstrap[i]->name, driver_name) == 0) {
179 if ( bootstrap[i]->available() ) {
180 video = bootstrap[i]->create(index);
186 for ( i=0; bootstrap[i]; ++i ) {
187 if ( bootstrap[i]->available() ) {
188 video = bootstrap[i]->create(index);
200 current_video->name = bootstrap[i]->name;