OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SDL_INIT_VIDEO
(Results
1 - 25
of
39
) sorted by null
1
2
/external/qemu/distrib/sdl-1.2.15/test/
testkeys.c
15
if ( SDL_Init(
SDL_INIT_VIDEO
) < 0 ) {
testjoystick.c
153
if ( SDL_Init(
SDL_INIT_VIDEO
|SDL_INIT_JOYSTICK) < 0 ) {
185
SDL_QuitSubSystem(
SDL_INIT_VIDEO
|SDL_INIT_JOYSTICK);
checkkeys.c
92
if ( SDL_Init(
SDL_INIT_VIDEO
) < 0 ) {
testcursor.c
150
if ( SDL_Init(
SDL_INIT_VIDEO
) < 0 ) {
testbitmap.c
69
if ( SDL_Init(
SDL_INIT_VIDEO
) < 0 ) {
testdyngl.c
110
if (SDL_Init(
SDL_INIT_VIDEO
)<0)
testgamma.c
89
if ( SDL_Init(
SDL_INIT_VIDEO
) < 0 ) {
graywin.c
143
if ( SDL_Init(
SDL_INIT_VIDEO
) < 0 ) {
threadwin.c
238
init_flags =
SDL_INIT_VIDEO
;
/external/qemu/distrib/sdl-1.2.15/src/
SDL.c
88
if ( (flags &
SDL_INIT_VIDEO
) && !(SDL_initialized &
SDL_INIT_VIDEO
) ) {
93
SDL_initialized |=
SDL_INIT_VIDEO
;
96
if ( flags &
SDL_INIT_VIDEO
) {
195
if ( (flags & SDL_initialized &
SDL_INIT_VIDEO
) ) {
197
SDL_initialized &= ~
SDL_INIT_VIDEO
;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Application/
main.c
17
Uint32 initflags =
SDL_INIT_VIDEO
; /* See documentation for details */
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/
main.c
17
Uint32 initflags =
SDL_INIT_VIDEO
; /* See documentation for details */
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/
main.c
17
Uint32 initflags =
SDL_INIT_VIDEO
; /* See documentation for details */
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/
main.c
17
Uint32 initflags =
SDL_INIT_VIDEO
; /* See documentation for details */
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Application/
main.c
17
Uint32 initflags =
SDL_INIT_VIDEO
; /* See documentation for details */
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/
main.c
17
Uint32 initflags =
SDL_INIT_VIDEO
; /* See documentation for details */
/external/qemu/distrib/sdl-1.2.15/include/
SDL.h
63
#define
SDL_INIT_VIDEO
0x00000020
/prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL.h
63
#define
SDL_INIT_VIDEO
0x00000020
/prebuilts/tools/linux-x86/sdl/include/SDL/
SDL.h
63
#define
SDL_INIT_VIDEO
0x00000020
/prebuilts/tools/windows/sdl/include/SDL/
SDL.h
63
#define
SDL_INIT_VIDEO
0x00000020
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/
main.c
153
if ( SDL_Init (
SDL_INIT_VIDEO
) < 0 ) {
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/
main.c
153
if ( SDL_Init (
SDL_INIT_VIDEO
) < 0 ) {
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/
main.c
153
if ( SDL_Init (
SDL_INIT_VIDEO
) < 0 ) {
/sdk/emulator/opengl/tests/emulator_test_renderer/
main.cpp
63
if (SDL_Init(SDL_INIT_NOPARACHUTE |
SDL_INIT_VIDEO
)) {
/external/qemu/
android-configure.sh
356
return SDL_Init (
SDL_INIT_VIDEO
);
383
return SDL_Init (
SDL_INIT_VIDEO
);
Completed in 152 milliseconds
1
2