Rename Android and EGL files

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1114 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
beuc 2012-03-11 16:01:29 +00:00
parent 2549248d0c
commit 2930d1d941
16 changed files with 28 additions and 29 deletions

28
.gitattributes vendored
View File

@ -132,24 +132,24 @@ freeglut/freeglut/progs/demos/subwin/subwin.dsp -text
freeglut/freeglut/progs/demos/subwin/subwinStatic.dsp -text
freeglut/freeglut/progs/demos/timer/timer.c -text
freeglut/freeglut/src/Makefile.am svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/src/android/freeglut_gamemode_android.c -text
freeglut/freeglut/src/android/freeglut_input_devices_android.c -text
freeglut/freeglut/src/android/freeglut_internal_android.h -text
freeglut/freeglut/src/android/freeglut_joystick_android.c -text
freeglut/freeglut/src/android/freeglut_main_android.c -text
freeglut/freeglut/src/android/freeglut_runtime_android.c -text
freeglut/freeglut/src/android/freeglut_spaceball_android.c -text
freeglut/freeglut/src/android/freeglut_state_android.c -text
freeglut/freeglut/src/android/freeglut_window_android.c -text
freeglut/freeglut/src/android/fg_gamemode_android.c -text
freeglut/freeglut/src/android/fg_input_devices_android.c -text
freeglut/freeglut/src/android/fg_internal_android.h -text
freeglut/freeglut/src/android/fg_joystick_android.c -text
freeglut/freeglut/src/android/fg_main_android.c -text
freeglut/freeglut/src/android/fg_runtime_android.c -text
freeglut/freeglut/src/android/fg_spaceball_android.c -text
freeglut/freeglut/src/android/fg_state_android.c -text
freeglut/freeglut/src/android/fg_window_android.c -text
freeglut/freeglut/src/android/native_app_glue/README -text
freeglut/freeglut/src/android/native_app_glue/android_native_app_glue.c -text
freeglut/freeglut/src/android/native_app_glue/android_native_app_glue.h -text
freeglut/freeglut/src/android/opengles_stubs.c -text
freeglut/freeglut/src/egl/freeglut_display_egl.c -text
freeglut/freeglut/src/egl/freeglut_init_egl.c -text
freeglut/freeglut/src/egl/freeglut_internal_egl.h -text
freeglut/freeglut/src/egl/freeglut_structure_egl.c -text
freeglut/freeglut/src/egl/freeglut_window_egl.c -text
freeglut/freeglut/src/egl/fg_display_egl.c -text
freeglut/freeglut/src/egl/fg_init_egl.c -text
freeglut/freeglut/src/egl/fg_internal_egl.h -text
freeglut/freeglut/src/egl/fg_structure_egl.c -text
freeglut/freeglut/src/egl/fg_window_egl.c -text
freeglut/freeglut/src/fg_callbacks.c svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/src/fg_cursor.c svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/src/fg_display.c svn_keywords=Author+Date+Id+Revision

View File

@ -24,7 +24,7 @@
*/
#include <GL/freeglut.h>
#include "../Common/freeglut_internal.h"
#include "fg_internal.h"
/*
* Changes the current display mode to match user's settings

View File

@ -28,8 +28,7 @@
* DEALINGS IN THE SOFTWARE.
*/
#include <GL/freeglut.h>
#include "../Common/freeglut_internal.h"
#include <stdio.h>
typedef struct _serialport SERIALPORT;
/*

View File

@ -29,7 +29,7 @@
/* -- PLATFORM-SPECIFIC INCLUDES ------------------------------------------- */
/* Android OpenGL ES is accessed through EGL */
#include "../egl/freeglut_internal_egl.h"
#include "egl/fg_internal_egl.h"
/**
* Virtual PAD (spots on touchscreen that simulate keys)

View File

@ -27,7 +27,7 @@
*/
#include <GL/freeglut.h>
#include "../Common/freeglut_internal.h"
#include "fg_internal.h"
void fgPlatformJoystickRawRead( SFG_Joystick* joy, int* buttons, float* axes )
{

View File

@ -27,7 +27,7 @@
*/
#include <GL/freeglut.h>
#include "Common/freeglut_internal.h"
#include "fg_internal.h"
#include <android/log.h>
#define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, "FreeGLUT", __VA_ARGS__))

View File

@ -30,7 +30,7 @@
*/
#include <GL/freeglut.h>
#include "../Common/freeglut_internal.h"
#include "fg_internal.h"
void fgPlatformInitializeSpaceball(void)
{

View File

@ -26,9 +26,9 @@
*/
#include <GL/freeglut.h>
#include "../Common/freeglut_internal.h"
#include <stdio.h>
#include <android/native_window.h>
#include "fg_internal.h"
int fgPlatformGlutGet ( GLenum eWhat )
{

View File

@ -28,7 +28,7 @@
#define FREEGLUT_BUILDING_LIB
#include <GL/freeglut.h>
#include "../Common/freeglut_internal.h"
#include "fg_internal.h"
extern EGLSurface fghEGLPlatformOpenWindow( EGLNativeWindowType handle );
/*

View File

@ -1,5 +1,5 @@
#include <GL/freeglut.h>
#include "../Common/freeglut_internal.h"
#include "fg_internal.h"
void fgDeactivateMenu( SFG_Window *window ) {
fprintf(stderr, "fgDeactivateMenu: STUB\n");

View File

@ -24,7 +24,7 @@
*/
#include <GL/freeglut.h>
#include "../Common/freeglut_internal.h"
#include "fg_internal.h"
#include <android/log.h>
#define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, "FreeGLUT", __VA_ARGS__))

View File

@ -25,7 +25,7 @@
#define FREEGLUT_BUILDING_LIB
#include <GL/freeglut.h>
#include "../Common/freeglut_internal.h"
#include "fg_internal.h"
#include <android/native_app_glue/android_native_app_glue.h>

View File

@ -24,7 +24,7 @@
*/
#include <GL/freeglut.h>
#include "../Common/freeglut_internal.h"
#include "fg_internal.h"
extern SFG_Structure fgStructure;

View File

@ -24,7 +24,7 @@
*/
#include <GL/freeglut.h>
#include "../Common/freeglut_internal.h"
#include "fg_internal.h"
/**
* Initialize an EGL context for the current display.