SDL Library

Dependents:   H261_decoder

Committer:
miruga27
Date:
Thu Sep 22 00:03:09 2016 +0000
Revision:
0:7fb6877b5d7c
SDL

Who changed what in which revision?

UserRevisionLine numberNew contents of line
miruga27 0:7fb6877b5d7c 1 /*
miruga27 0:7fb6877b5d7c 2 Simple DirectMedia Layer
miruga27 0:7fb6877b5d7c 3 Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
miruga27 0:7fb6877b5d7c 4
miruga27 0:7fb6877b5d7c 5 This software is provided 'as-is', without any express or implied
miruga27 0:7fb6877b5d7c 6 warranty. In no event will the authors be held liable for any damages
miruga27 0:7fb6877b5d7c 7 arising from the use of this software.
miruga27 0:7fb6877b5d7c 8
miruga27 0:7fb6877b5d7c 9 Permission is granted to anyone to use this software for any purpose,
miruga27 0:7fb6877b5d7c 10 including commercial applications, and to alter it and redistribute it
miruga27 0:7fb6877b5d7c 11 freely, subject to the following restrictions:
miruga27 0:7fb6877b5d7c 12
miruga27 0:7fb6877b5d7c 13 1. The origin of this software must not be misrepresented; you must not
miruga27 0:7fb6877b5d7c 14 claim that you wrote the original software. If you use this software
miruga27 0:7fb6877b5d7c 15 in a product, an acknowledgment in the product documentation would be
miruga27 0:7fb6877b5d7c 16 appreciated but is not required.
miruga27 0:7fb6877b5d7c 17 2. Altered source versions must be plainly marked as such, and must not be
miruga27 0:7fb6877b5d7c 18 misrepresented as being the original software.
miruga27 0:7fb6877b5d7c 19 3. This notice may not be removed or altered from any source distribution.
miruga27 0:7fb6877b5d7c 20 */
miruga27 0:7fb6877b5d7c 21
miruga27 0:7fb6877b5d7c 22 /**
miruga27 0:7fb6877b5d7c 23 * \file SDL_system.h
miruga27 0:7fb6877b5d7c 24 *
miruga27 0:7fb6877b5d7c 25 * Include file for platform specific SDL API functions
miruga27 0:7fb6877b5d7c 26 */
miruga27 0:7fb6877b5d7c 27
miruga27 0:7fb6877b5d7c 28 #ifndef _SDL_system_h
miruga27 0:7fb6877b5d7c 29 #define _SDL_system_h
miruga27 0:7fb6877b5d7c 30
miruga27 0:7fb6877b5d7c 31 #include "SDL_stdinc.h"
miruga27 0:7fb6877b5d7c 32 #include "SDL_keyboard.h"
miruga27 0:7fb6877b5d7c 33 #include "SDL_render.h"
miruga27 0:7fb6877b5d7c 34 #include "SDL_video.h"
miruga27 0:7fb6877b5d7c 35
miruga27 0:7fb6877b5d7c 36 #include "begin_code.h"
miruga27 0:7fb6877b5d7c 37 /* Set up for C function definitions, even when using C++ */
miruga27 0:7fb6877b5d7c 38 #ifdef __cplusplus
miruga27 0:7fb6877b5d7c 39 extern "C" {
miruga27 0:7fb6877b5d7c 40 #endif
miruga27 0:7fb6877b5d7c 41
miruga27 0:7fb6877b5d7c 42
miruga27 0:7fb6877b5d7c 43 /* Platform specific functions for Windows */
miruga27 0:7fb6877b5d7c 44 #ifdef __WIN32__
miruga27 0:7fb6877b5d7c 45
miruga27 0:7fb6877b5d7c 46 /* Returns the D3D9 adapter index that matches the specified display index.
miruga27 0:7fb6877b5d7c 47 This adapter index can be passed to IDirect3D9::CreateDevice and controls
miruga27 0:7fb6877b5d7c 48 on which monitor a full screen application will appear.
miruga27 0:7fb6877b5d7c 49 */
miruga27 0:7fb6877b5d7c 50 extern DECLSPEC int SDLCALL SDL_Direct3D9GetAdapterIndex( int displayIndex );
miruga27 0:7fb6877b5d7c 51
miruga27 0:7fb6877b5d7c 52 /* Returns the D3D device associated with a renderer, or NULL if it's not a D3D renderer.
miruga27 0:7fb6877b5d7c 53 Once you are done using the device, you should release it to avoid a resource leak.
miruga27 0:7fb6877b5d7c 54 */
miruga27 0:7fb6877b5d7c 55 typedef struct IDirect3DDevice9 IDirect3DDevice9;
miruga27 0:7fb6877b5d7c 56 extern DECLSPEC IDirect3DDevice9* SDLCALL SDL_RenderGetD3D9Device(SDL_Renderer * renderer);
miruga27 0:7fb6877b5d7c 57
miruga27 0:7fb6877b5d7c 58 /* Returns the DXGI Adapter and Output indices for the specified display index.
miruga27 0:7fb6877b5d7c 59 These can be passed to EnumAdapters and EnumOutputs respectively to get the objects
miruga27 0:7fb6877b5d7c 60 required to create a DX10 or DX11 device and swap chain.
miruga27 0:7fb6877b5d7c 61 */
miruga27 0:7fb6877b5d7c 62 extern DECLSPEC void SDLCALL SDL_DXGIGetOutputInfo( int displayIndex, int *adapterIndex, int *outputIndex );
miruga27 0:7fb6877b5d7c 63
miruga27 0:7fb6877b5d7c 64 #endif /* __WIN32__ */
miruga27 0:7fb6877b5d7c 65
miruga27 0:7fb6877b5d7c 66
miruga27 0:7fb6877b5d7c 67 /* Platform specific functions for iOS */
miruga27 0:7fb6877b5d7c 68 #if defined(__IPHONEOS__) && __IPHONEOS__
miruga27 0:7fb6877b5d7c 69
miruga27 0:7fb6877b5d7c 70 extern DECLSPEC int SDLCALL SDL_iPhoneSetAnimationCallback(SDL_Window * window, int interval, void (*callback)(void*), void *callbackParam);
miruga27 0:7fb6877b5d7c 71 extern DECLSPEC void SDLCALL SDL_iPhoneSetEventPump(SDL_bool enabled);
miruga27 0:7fb6877b5d7c 72
miruga27 0:7fb6877b5d7c 73 #endif /* __IPHONEOS__ */
miruga27 0:7fb6877b5d7c 74
miruga27 0:7fb6877b5d7c 75
miruga27 0:7fb6877b5d7c 76 /* Platform specific functions for Android */
miruga27 0:7fb6877b5d7c 77 #if defined(__ANDROID__) && __ANDROID__
miruga27 0:7fb6877b5d7c 78
miruga27 0:7fb6877b5d7c 79 /* Get the JNI environment for the current thread
miruga27 0:7fb6877b5d7c 80 This returns JNIEnv*, but the prototype is void* so we don't need jni.h
miruga27 0:7fb6877b5d7c 81 */
miruga27 0:7fb6877b5d7c 82 extern DECLSPEC void * SDLCALL SDL_AndroidGetJNIEnv();
miruga27 0:7fb6877b5d7c 83
miruga27 0:7fb6877b5d7c 84 /* Get the SDL Activity object for the application
miruga27 0:7fb6877b5d7c 85 This returns jobject, but the prototype is void* so we don't need jni.h
miruga27 0:7fb6877b5d7c 86 The jobject returned by SDL_AndroidGetActivity is a local reference.
miruga27 0:7fb6877b5d7c 87 It is the caller's responsibility to properly release it
miruga27 0:7fb6877b5d7c 88 (using env->Push/PopLocalFrame or manually with env->DeleteLocalRef)
miruga27 0:7fb6877b5d7c 89 */
miruga27 0:7fb6877b5d7c 90 extern DECLSPEC void * SDLCALL SDL_AndroidGetActivity();
miruga27 0:7fb6877b5d7c 91
miruga27 0:7fb6877b5d7c 92 /* See the official Android developer guide for more information:
miruga27 0:7fb6877b5d7c 93 http://developer.android.com/guide/topics/data/data-storage.html
miruga27 0:7fb6877b5d7c 94 */
miruga27 0:7fb6877b5d7c 95 #define SDL_ANDROID_EXTERNAL_STORAGE_READ 0x01
miruga27 0:7fb6877b5d7c 96 #define SDL_ANDROID_EXTERNAL_STORAGE_WRITE 0x02
miruga27 0:7fb6877b5d7c 97
miruga27 0:7fb6877b5d7c 98 /* Get the path used for internal storage for this application.
miruga27 0:7fb6877b5d7c 99 This path is unique to your application and cannot be written to
miruga27 0:7fb6877b5d7c 100 by other applications.
miruga27 0:7fb6877b5d7c 101 */
miruga27 0:7fb6877b5d7c 102 extern DECLSPEC const char * SDLCALL SDL_AndroidGetInternalStoragePath();
miruga27 0:7fb6877b5d7c 103
miruga27 0:7fb6877b5d7c 104 /* Get the current state of external storage, a bitmask of these values:
miruga27 0:7fb6877b5d7c 105 SDL_ANDROID_EXTERNAL_STORAGE_READ
miruga27 0:7fb6877b5d7c 106 SDL_ANDROID_EXTERNAL_STORAGE_WRITE
miruga27 0:7fb6877b5d7c 107 If external storage is currently unavailable, this will return 0.
miruga27 0:7fb6877b5d7c 108 */
miruga27 0:7fb6877b5d7c 109 extern DECLSPEC int SDLCALL SDL_AndroidGetExternalStorageState();
miruga27 0:7fb6877b5d7c 110
miruga27 0:7fb6877b5d7c 111 /* Get the path used for external storage for this application.
miruga27 0:7fb6877b5d7c 112 This path is unique to your application, but is public and can be
miruga27 0:7fb6877b5d7c 113 written to by other applications.
miruga27 0:7fb6877b5d7c 114 */
miruga27 0:7fb6877b5d7c 115 extern DECLSPEC const char * SDLCALL SDL_AndroidGetExternalStoragePath();
miruga27 0:7fb6877b5d7c 116
miruga27 0:7fb6877b5d7c 117 #endif /* __ANDROID__ */
miruga27 0:7fb6877b5d7c 118
miruga27 0:7fb6877b5d7c 119 /* Ends C function definitions when using C++ */
miruga27 0:7fb6877b5d7c 120 #ifdef __cplusplus
miruga27 0:7fb6877b5d7c 121 }
miruga27 0:7fb6877b5d7c 122 #endif
miruga27 0:7fb6877b5d7c 123 #include "close_code.h"
miruga27 0:7fb6877b5d7c 124
miruga27 0:7fb6877b5d7c 125 #endif /* _SDL_system_h */
miruga27 0:7fb6877b5d7c 126
miruga27 0:7fb6877b5d7c 127 /* vi: set ts=4 sw=4 expandtab: */