Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
95 lines (73 loc) · 2.68 KB

SDL_androidgl.c

File metadata and controls

95 lines (73 loc) · 2.68 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997-2010 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Sam Lantinga
slouken@libsdl.org
*/
#include "SDL_config.h"
/* Android SDL video driver implementation
*/
#include "SDL_video.h"
#include "SDL_mouse.h"
#include "../SDL_sysvideo.h"
#include "../SDL_pixels_c.h"
#include "../../events/SDL_events_c.h"
#include "SDL_androidvideo.h"
Jun 10, 2010
Jun 10, 2010
34
35
#include "SDL_androidevents.h"
#include "SDL_androidrender.h"
Jun 17, 2010
Jun 17, 2010
37
#include <android/log.h>
Jun 17, 2010
Jun 17, 2010
40
41
42
43
/*
These things are in the JNI android support
*/
44
45
46
47
/* GL functions */
int Android_GL_LoadLibrary(_THIS, const char *path){
Jun 17, 2010
Jun 17, 2010
48
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_LoadLibrary\n");
49
50
51
52
return 0;
}
void *Android_GL_GetProcAddress(_THIS, const char *proc){
Jun 17, 2010
Jun 17, 2010
53
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_GetProcAddress\n");
54
55
56
57
return 0;
}
void Android_GL_UnloadLibrary(_THIS){
Jun 17, 2010
Jun 17, 2010
58
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_UnloadLibrary\n");
59
60
61
62
}
/*
int *Android_GL_GetVisual(_THIS, Display * display, int screen){
Jun 17, 2010
Jun 17, 2010
63
__android_log_print(ANDROID_LOG_INFO, "SDL","[STUB] GL_GetVisual\n");
64
65
66
67
68
return 0;
}
*/
SDL_GLContext Android_GL_CreateContext(_THIS, SDL_Window * window){
Jun 17, 2010
Jun 17, 2010
69
70
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_CreateContext\n");
return NULL;
71
72
73
74
}
int Android_GL_MakeCurrent(_THIS, SDL_Window * window,
SDL_GLContext context){
Jun 17, 2010
Jun 17, 2010
75
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_MakeCurrent\n");
76
77
78
79
return 0;
}
int Android_GL_SetSwapInterval(_THIS, int interval){
Jun 17, 2010
Jun 17, 2010
80
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_SetSwapInterval\n");
81
82
83
84
return 0;
}
int Android_GL_GetSwapInterval(_THIS){
Jun 17, 2010
Jun 17, 2010
85
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_GetSwapInterval\n");
86
87
88
89
return 0;
}
void Android_GL_SwapWindow(_THIS, SDL_Window * window){
Jun 17, 2010
Jun 17, 2010
90
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_SwapWindow\n");
91
92
93
}
void Android_GL_DeleteContext(_THIS, SDL_GLContext context){
Jun 17, 2010
Jun 17, 2010
94
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_DeleteContext\n");