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

Latest commit

 

History

History
82 lines (63 loc) · 2.33 KB

SDL_androidgl.c

File metadata and controls

82 lines (63 loc) · 2.33 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
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"
Jan 12, 2011
Jan 12, 2011
24
/* Android SDL video driver implementation */
25
26
27
28
29
#include "SDL_video.h"
#include "SDL_androidvideo.h"
Jun 17, 2010
Jun 17, 2010
30
#include <android/log.h>
Jun 17, 2010
Jun 17, 2010
32
#include <pthread.h>
Jun 17, 2010
Jun 17, 2010
34
35
36
/*
These things are in the JNI android support
*/
Jul 27, 2010
Jul 27, 2010
37
38
extern void Android_CreateContext();
extern void Android_Render();
39
40
41
/* GL functions */
int Android_GL_LoadLibrary(_THIS, const char *path){
Jun 17, 2010
Jun 17, 2010
42
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_LoadLibrary\n");
43
44
45
46
return 0;
}
void *Android_GL_GetProcAddress(_THIS, const char *proc){
Jun 17, 2010
Jun 17, 2010
47
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_GetProcAddress\n");
48
49
50
51
return 0;
}
void Android_GL_UnloadLibrary(_THIS){
Jun 17, 2010
Jun 17, 2010
52
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_UnloadLibrary\n");
53
54
55
}
SDL_GLContext Android_GL_CreateContext(_THIS, SDL_Window * window){
Jul 27, 2010
Jul 27, 2010
56
Android_CreateContext();
Jun 17, 2010
Jun 17, 2010
57
return 1;
58
59
60
61
}
int Android_GL_MakeCurrent(_THIS, SDL_Window * window,
SDL_GLContext context){
Jan 5, 2011
Jan 5, 2011
62
//__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_MakeCurrent\n");
63
64
65
66
return 0;
}
int Android_GL_SetSwapInterval(_THIS, int interval){
Jun 17, 2010
Jun 17, 2010
67
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_SetSwapInterval\n");
68
69
70
71
return 0;
}
int Android_GL_GetSwapInterval(_THIS){
Jun 17, 2010
Jun 17, 2010
72
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_GetSwapInterval\n");
73
74
75
76
return 0;
}
void Android_GL_SwapWindow(_THIS, SDL_Window * window){
Jul 27, 2010
Jul 27, 2010
77
Android_Render();
78
79
80
}
void Android_GL_DeleteContext(_THIS, SDL_GLContext context){
Jun 17, 2010
Jun 17, 2010
81
__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_DeleteContext\n");