/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
glGetBooleanv.cpp | 4 (JNIEnv *_env, jobject _this, jint pname, jbooleanArray params_ref, jint offset) { 5 get<jbooleanArray, GLboolean, glGetBooleanv>(_env, _this, pname, params_ref, offset); 11 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { 12 getarray<GLboolean, glGetBooleanv>(_env, _this, pname, params_buf);
|
glGetFloatv.cpp | 4 (JNIEnv *_env, jobject _this, jint pname, jfloatArray params_ref, jint offset) { 5 get<jfloatArray, GLfloat, glGetFloatv>(_env, _this, pname, params_ref, offset); 11 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { 12 getarray<GLfloat, glGetFloatv>(_env, _this, pname, params_buf);
|
glGetIntegerv.cpp | 4 (JNIEnv *_env, jobject _this, jint pname, jintArray params_ref, jint offset) { 5 get<jintArray, GLint, glGetIntegerv>(_env, _this, pname, params_ref, offset); 11 (JNIEnv *_env, jobject _this, jint pname, jobject params_buf) { 12 getarray<GLint, glGetIntegerv>(_env, _this, pname, params_buf);
|
glGetStringi.cpp | 4 (JNIEnv *_env, jobject _this, jint name, jint index) {
|
/external/qemu/distrib/sdl-1.2.15/src/video/photon/ |
SDL_ph_image_c.h | 38 extern int ph_SetupImage(_THIS, SDL_Surface* screen); 39 extern void ph_DestroyImage(_THIS, SDL_Surface* screen); 40 extern int ph_SetupUpdateFunction(_THIS, SDL_Surface* screen, Uint32 flags); 42 extern int ph_AllocHWSurface(_THIS, SDL_Surface* surface); 43 extern void ph_FreeHWSurface(_THIS, SDL_Surface* surface); 44 extern int ph_CheckHWBlit(_THIS, SDL_Surface *src, SDL_Surface *dst); 45 extern int ph_FillHWRect(_THIS, SDL_Surface* surface, SDL_Rect* rect, Uint32 color); 46 extern int ph_LockHWSurface(_THIS, SDL_Surface* surface); 47 extern void ph_UnlockHWSurface(_THIS, SDL_Surface* surface); 48 extern int ph_FlipHWSurface(_THIS, SDL_Surface* surface) [all...] |
SDL_ph_gl.h | 32 void ph_GL_SwapBuffers(_THIS); 33 int ph_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value); 34 int ph_GL_LoadLibrary(_THIS, const char* path); 35 void* ph_GL_GetProcAddress(_THIS, const char* proc); 36 int ph_GL_MakeCurrent(_THIS); 38 int ph_SetupOpenGLContext(_THIS, int width, int height, int bpp, Uint32 flags);
|
SDL_ph_modes_c.h | 34 extern SDL_Rect **ph_ListModes(_THIS,SDL_PixelFormat *format, Uint32 flags); 35 extern void ph_FreeVideoModes(_THIS); 36 extern int ph_ResizeFullScreen(_THIS); 37 extern int ph_EnterFullScreen(_THIS, SDL_Surface* screen, int fmode); 38 extern int ph_LeaveFullScreen(_THIS); 41 extern int ph_ToggleFullScreen(_THIS, int on);
|
SDL_ph_mouse_c.h | 30 extern void ph_FreeWMCursor(_THIS, WMcursor *cursor); 31 extern WMcursor *ph_CreateWMCursor(_THIS, 34 extern int ph_ShowWMCursor(_THIS, WMcursor *cursor); 35 extern void ph_WarpWMCursor(_THIS, Uint16 x, Uint16 y); 36 extern void ph_CheckMouseMode(_THIS); 37 extern void ph_UpdateMouse(_THIS);
|
SDL_ph_wm_c.h | 30 extern void ph_SetCaption(_THIS, const char *title, const char *icon); 31 extern void ph_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask); 32 extern int ph_IconifyWindow(_THIS); 33 extern SDL_GrabMode ph_GrabInputNoLock(_THIS, SDL_GrabMode mode); 34 extern SDL_GrabMode ph_GrabInput(_THIS, SDL_GrabMode mode); 35 extern int ph_GetWMInfo(_THIS, SDL_SysWMinfo *info);
|
/external/qemu/distrib/sdl-1.2.15/src/video/x11/ |
SDL_x11wm_c.h | 27 extern void X11_SetCaptionNoLock(_THIS, const char *title, const char *icon); 28 extern void X11_SetCaption(_THIS, const char *title, const char *icon); 29 extern void X11_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask); 30 extern int X11_IconifyWindow(_THIS); 31 extern SDL_GrabMode X11_GrabInputNoLock(_THIS, SDL_GrabMode mode); 32 extern SDL_GrabMode X11_GrabInput(_THIS, SDL_GrabMode mode); 33 extern int X11_GetWMInfo(_THIS, SDL_SysWMinfo *info); 34 extern void X11_GetWindowPos(_THIS, int *px, int *py); 35 extern void X11_SetWindowPos(_THIS, int x, int y); 36 extern int X11_IsWindowVisible(_THIS, int recenter) [all...] |
SDL_x11image_c.h | 26 extern int X11_SetupImage(_THIS, SDL_Surface *screen); 27 extern void X11_DestroyImage(_THIS, SDL_Surface *screen); 28 extern int X11_ResizeImage(_THIS, SDL_Surface *screen, Uint32 flags); 30 extern int X11_AllocHWSurface(_THIS, SDL_Surface *surface); 31 extern void X11_FreeHWSurface(_THIS, SDL_Surface *surface); 32 extern int X11_LockHWSurface(_THIS, SDL_Surface *surface); 33 extern void X11_UnlockHWSurface(_THIS, SDL_Surface *surface); 34 extern int X11_FlipHWSurface(_THIS, SDL_Surface *surface); 36 extern void X11_DisableAutoRefresh(_THIS); 37 extern void X11_EnableAutoRefresh(_THIS); [all...] |
SDL_x11modes_c.h | 35 extern int X11_GetVideoModes(_THIS); 36 extern SDL_Rect **X11_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags); 37 extern void X11_FreeVideoModes(_THIS); 38 extern int X11_ResizeFullScreen(_THIS); 39 extern void X11_WaitMapped(_THIS, Window win); 40 extern void X11_WaitUnmapped(_THIS, Window win); 41 extern void X11_QueueEnterFullScreen(_THIS); 42 extern int X11_EnterFullScreen(_THIS); 43 extern int X11_LeaveFullScreen(_THIS);
|
SDL_x11mouse_c.h | 27 extern void X11_FreeWMCursor(_THIS, WMcursor *cursor); 28 extern WMcursor *X11_CreateWMCursor(_THIS, 30 extern int X11_ShowWMCursor(_THIS, WMcursor *cursor); 31 extern void X11_WarpWMCursor(_THIS, Uint16 x, Uint16 y); 32 extern void X11_CheckMouseModeNoLock(_THIS); 33 extern void X11_CheckMouseMode(_THIS);
|
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/ |
SDL_fbevents_c.h | 29 extern int FB_OpenKeyboard(_THIS); 30 extern void FB_CloseKeyboard(_THIS); 31 extern int FB_OpenMouse(_THIS); 32 extern void FB_CloseMouse(_THIS); 33 extern int FB_EnterGraphicsMode(_THIS); 34 extern int FB_InGraphicsMode(_THIS); 35 extern void FB_LeaveGraphicsMode(_THIS); 37 extern void FB_InitOSKeymap(_THIS); 38 extern void FB_PumpEvents(_THIS);
|
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/ |
SDL_gsevents_c.h | 29 extern int GS_OpenKeyboard(_THIS); 30 extern void GS_CloseKeyboard(_THIS); 31 extern int GS_OpenMouse(_THIS); 32 extern void GS_CloseMouse(_THIS); 33 extern int GS_EnterGraphicsMode(_THIS); 34 extern int GS_InGraphicsMode(_THIS); 35 extern void GS_LeaveGraphicsMode(_THIS); 37 extern void GS_InitOSKeymap(_THIS); 38 extern void GS_PumpEvents(_THIS);
|
/external/qemu/distrib/sdl-1.2.15/src/video/qtopia/ |
SDL_lowvideo.h | 31 #define _THIS SDL_VideoDevice *_this 55 #define SDL_Win (_this->hidden->SDL_Win) 56 #define saved_mode (_this->hidden->saved_mode) 57 #define SDL_nummodes (_this->hidden->SDL_nummodes) 58 #define SDL_modelist (_this->hidden->SDL_modelist) 59 #define SDL_BlankCursor (_this->hidden->BlankCursor) 60 #define last_buttons (_this->hidden->last_buttons) 61 #define last_point (_this->hidden->last_point) 62 #define key_flip (_this->hidden->key_flip [all...] |
/external/qemu/distrib/sdl-1.2.15/src/audio/dart/ |
SDL_dart.c | 76 int DART_OpenAudio(_THIS, SDL_AudioSpec *spec) 151 SDL_memset(&(_this->hidden->MixSetupParms), 0, sizeof(MCI_MIXSETUP_PARMS)); 152 _this->hidden->MixSetupParms.ulBitsPerSample = iBits; 153 _this->hidden->MixSetupParms.ulFormatTag = MCI_WAVE_FORMAT_PCM; 154 _this->hidden->MixSetupParms.ulSamplesPerSec = iFreq; 155 _this->hidden->MixSetupParms.ulChannels = iChannels; 156 _this->hidden->MixSetupParms.ulFormatMode = MCI_PLAY; 157 _this->hidden->MixSetupParms.ulDeviceType = MCI_DEVTYPE_WAVEFORM_AUDIO; 158 _this->hidden->MixSetupParms.pmixEvent = DARTEventFunc; 161 &(_this->hidden->MixSetupParms), 0) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/ |
SDL_macgl_c.h | 37 extern int Mac_GL_Init(_THIS); 38 extern void Mac_GL_Quit(_THIS); 40 extern int Mac_GL_MakeCurrent(_THIS); 41 extern int Mac_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value); 42 extern void Mac_GL_SwapBuffers(_THIS); 43 extern int Mac_GL_LoadLibrary(_THIS, const char *location); 44 extern void Mac_GL_UnloadLibrary(_THIS); 45 extern void* Mac_GL_GetProcAddress(_THIS, const char *proc);
|
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_yuvfuncs.h | 29 #ifndef _THIS 30 #define _THIS SDL_VideoDevice *_this 33 int (*Lock)(_THIS, SDL_Overlay *overlay); 34 void (*Unlock)(_THIS, SDL_Overlay *overlay); 35 int (*Display)(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst); 36 void (*FreeHW)(_THIS, SDL_Overlay *overlay);
|
SDL_sysvideo.h | 44 #define _THIS SDL_VideoDevice *_this 59 int (*VideoInit)(_THIS, SDL_PixelFormat *vformat); 64 SDL_Rect **(*ListModes)(_THIS, SDL_PixelFormat *format, Uint32 flags); 74 SDL_Surface *(*SetVideoMode)(_THIS, SDL_Surface *current, 78 int (*ToggleFullScreen)(_THIS, int on); 84 void (*UpdateMouse)(_THIS); 90 SDL_Overlay *(*CreateYUVOverlay)(_THIS, int width, int height, 101 int (*SetColors)(_THIS, int firstcolor, int ncolors, 107 void (*UpdateRects)(_THIS, int numrects, SDL_Rect *rects) [all...] |
/frameworks/native/opengl/tools/glgen/stubs/egl/ |
eglQueryString.cpp | 4 (JNIEnv *_env, jobject _this, jobject dpy, jint name) {
|
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
SDL_lowvideo.h | 32 #define _THIS SDL_VideoDevice *_this 51 #define SDL_Win (_this->hidden->SDL_Win) 52 #define saved_mode (_this->hidden->saved_mode) 53 #define SDL_nummodes (_this->hidden->SDL_nummodes) 54 #define SDL_modelist (_this->hidden->SDL_modelist) 55 #define SDL_BlankCursor (_this->hidden->BlankCursor) 56 #define current_overlay (_this->hidden->overlay)
|
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/ |
SDL_riscosmouse_c.h | 36 void RISCOS_FreeWMCursor(_THIS, WMcursor *cursor); 37 WMcursor *RISCOS_CreateWMCursor(_THIS, Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y); 39 int RISCOS_ShowWMCursor(_THIS, WMcursor *cursor); 40 void FULLSCREEN_WarpWMCursor(_THIS, Uint16 x, Uint16 y); 42 int WIMP_ShowWMCursor(_THIS, WMcursor *cursor); 43 void WIMP_WarpWMCursor(_THIS, Uint16 x, Uint16 y);
|
/external/qemu/distrib/sdl-1.2.15/src/video/wincommon/ |
SDL_sysmouse_c.h | 27 extern void WIN_FreeWMCursor(_THIS, WMcursor *cursor); 28 extern WMcursor *WIN_CreateWMCursor(_THIS, 30 extern int WIN_ShowWMCursor(_THIS, WMcursor *cursor); 31 extern void WIN_WarpWMCursor(_THIS, Uint16 x, Uint16 y); 32 extern void WIN_UpdateMouse(_THIS); 33 extern void WIN_CheckMouseMode(_THIS);
|
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/ |
SDL_dx5events_c.h | 30 DX5_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); 31 extern int DX5_CreateWindow(_THIS); 32 extern void DX5_DestroyWindow(_THIS); 34 extern void DX5_PumpEvents(_THIS); 35 extern void DX5_InitOSKeymap(_THIS); 36 extern void DX5_DInputReset(_THIS, int fullscreen);
|