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:
parent
2549248d0c
commit
2930d1d941
28
.gitattributes
vendored
28
.gitattributes
vendored
@ -132,24 +132,24 @@ freeglut/freeglut/progs/demos/subwin/subwin.dsp -text
|
|||||||
freeglut/freeglut/progs/demos/subwin/subwinStatic.dsp -text
|
freeglut/freeglut/progs/demos/subwin/subwinStatic.dsp -text
|
||||||
freeglut/freeglut/progs/demos/timer/timer.c -text
|
freeglut/freeglut/progs/demos/timer/timer.c -text
|
||||||
freeglut/freeglut/src/Makefile.am svn_keywords=Author+Date+Id+Revision
|
freeglut/freeglut/src/Makefile.am svn_keywords=Author+Date+Id+Revision
|
||||||
freeglut/freeglut/src/android/freeglut_gamemode_android.c -text
|
freeglut/freeglut/src/android/fg_gamemode_android.c -text
|
||||||
freeglut/freeglut/src/android/freeglut_input_devices_android.c -text
|
freeglut/freeglut/src/android/fg_input_devices_android.c -text
|
||||||
freeglut/freeglut/src/android/freeglut_internal_android.h -text
|
freeglut/freeglut/src/android/fg_internal_android.h -text
|
||||||
freeglut/freeglut/src/android/freeglut_joystick_android.c -text
|
freeglut/freeglut/src/android/fg_joystick_android.c -text
|
||||||
freeglut/freeglut/src/android/freeglut_main_android.c -text
|
freeglut/freeglut/src/android/fg_main_android.c -text
|
||||||
freeglut/freeglut/src/android/freeglut_runtime_android.c -text
|
freeglut/freeglut/src/android/fg_runtime_android.c -text
|
||||||
freeglut/freeglut/src/android/freeglut_spaceball_android.c -text
|
freeglut/freeglut/src/android/fg_spaceball_android.c -text
|
||||||
freeglut/freeglut/src/android/freeglut_state_android.c -text
|
freeglut/freeglut/src/android/fg_state_android.c -text
|
||||||
freeglut/freeglut/src/android/freeglut_window_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/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.c -text
|
||||||
freeglut/freeglut/src/android/native_app_glue/android_native_app_glue.h -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/android/opengles_stubs.c -text
|
||||||
freeglut/freeglut/src/egl/freeglut_display_egl.c -text
|
freeglut/freeglut/src/egl/fg_display_egl.c -text
|
||||||
freeglut/freeglut/src/egl/freeglut_init_egl.c -text
|
freeglut/freeglut/src/egl/fg_init_egl.c -text
|
||||||
freeglut/freeglut/src/egl/freeglut_internal_egl.h -text
|
freeglut/freeglut/src/egl/fg_internal_egl.h -text
|
||||||
freeglut/freeglut/src/egl/freeglut_structure_egl.c -text
|
freeglut/freeglut/src/egl/fg_structure_egl.c -text
|
||||||
freeglut/freeglut/src/egl/freeglut_window_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_callbacks.c svn_keywords=Author+Date+Id+Revision
|
||||||
freeglut/freeglut/src/fg_cursor.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
|
freeglut/freeglut/src/fg_display.c svn_keywords=Author+Date+Id+Revision
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <GL/freeglut.h>
|
#include <GL/freeglut.h>
|
||||||
#include "../Common/freeglut_internal.h"
|
#include "fg_internal.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Changes the current display mode to match user's settings
|
* Changes the current display mode to match user's settings
|
@ -28,8 +28,7 @@
|
|||||||
* DEALINGS IN THE SOFTWARE.
|
* DEALINGS IN THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <GL/freeglut.h>
|
#include <stdio.h>
|
||||||
#include "../Common/freeglut_internal.h"
|
|
||||||
typedef struct _serialport SERIALPORT;
|
typedef struct _serialport SERIALPORT;
|
||||||
|
|
||||||
/*
|
/*
|
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
/* -- PLATFORM-SPECIFIC INCLUDES ------------------------------------------- */
|
/* -- PLATFORM-SPECIFIC INCLUDES ------------------------------------------- */
|
||||||
/* Android OpenGL ES is accessed through EGL */
|
/* 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)
|
* Virtual PAD (spots on touchscreen that simulate keys)
|
@ -27,7 +27,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <GL/freeglut.h>
|
#include <GL/freeglut.h>
|
||||||
#include "../Common/freeglut_internal.h"
|
#include "fg_internal.h"
|
||||||
|
|
||||||
void fgPlatformJoystickRawRead( SFG_Joystick* joy, int* buttons, float* axes )
|
void fgPlatformJoystickRawRead( SFG_Joystick* joy, int* buttons, float* axes )
|
||||||
{
|
{
|
@ -27,7 +27,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <GL/freeglut.h>
|
#include <GL/freeglut.h>
|
||||||
#include "Common/freeglut_internal.h"
|
#include "fg_internal.h"
|
||||||
|
|
||||||
#include <android/log.h>
|
#include <android/log.h>
|
||||||
#define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, "FreeGLUT", __VA_ARGS__))
|
#define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, "FreeGLUT", __VA_ARGS__))
|
@ -30,7 +30,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <GL/freeglut.h>
|
#include <GL/freeglut.h>
|
||||||
#include "../Common/freeglut_internal.h"
|
#include "fg_internal.h"
|
||||||
|
|
||||||
void fgPlatformInitializeSpaceball(void)
|
void fgPlatformInitializeSpaceball(void)
|
||||||
{
|
{
|
@ -26,9 +26,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <GL/freeglut.h>
|
#include <GL/freeglut.h>
|
||||||
#include "../Common/freeglut_internal.h"
|
#include <stdio.h>
|
||||||
|
|
||||||
#include <android/native_window.h>
|
#include <android/native_window.h>
|
||||||
|
#include "fg_internal.h"
|
||||||
|
|
||||||
int fgPlatformGlutGet ( GLenum eWhat )
|
int fgPlatformGlutGet ( GLenum eWhat )
|
||||||
{
|
{
|
@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
#define FREEGLUT_BUILDING_LIB
|
#define FREEGLUT_BUILDING_LIB
|
||||||
#include <GL/freeglut.h>
|
#include <GL/freeglut.h>
|
||||||
#include "../Common/freeglut_internal.h"
|
#include "fg_internal.h"
|
||||||
extern EGLSurface fghEGLPlatformOpenWindow( EGLNativeWindowType handle );
|
extern EGLSurface fghEGLPlatformOpenWindow( EGLNativeWindowType handle );
|
||||||
|
|
||||||
/*
|
/*
|
@ -1,5 +1,5 @@
|
|||||||
#include <GL/freeglut.h>
|
#include <GL/freeglut.h>
|
||||||
#include "../Common/freeglut_internal.h"
|
#include "fg_internal.h"
|
||||||
|
|
||||||
void fgDeactivateMenu( SFG_Window *window ) {
|
void fgDeactivateMenu( SFG_Window *window ) {
|
||||||
fprintf(stderr, "fgDeactivateMenu: STUB\n");
|
fprintf(stderr, "fgDeactivateMenu: STUB\n");
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <GL/freeglut.h>
|
#include <GL/freeglut.h>
|
||||||
#include "../Common/freeglut_internal.h"
|
#include "fg_internal.h"
|
||||||
|
|
||||||
#include <android/log.h>
|
#include <android/log.h>
|
||||||
#define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, "FreeGLUT", __VA_ARGS__))
|
#define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, "FreeGLUT", __VA_ARGS__))
|
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
#define FREEGLUT_BUILDING_LIB
|
#define FREEGLUT_BUILDING_LIB
|
||||||
#include <GL/freeglut.h>
|
#include <GL/freeglut.h>
|
||||||
#include "../Common/freeglut_internal.h"
|
#include "fg_internal.h"
|
||||||
|
|
||||||
#include <android/native_app_glue/android_native_app_glue.h>
|
#include <android/native_app_glue/android_native_app_glue.h>
|
||||||
|
|
@ -24,7 +24,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <GL/freeglut.h>
|
#include <GL/freeglut.h>
|
||||||
#include "../Common/freeglut_internal.h"
|
#include "fg_internal.h"
|
||||||
|
|
||||||
extern SFG_Structure fgStructure;
|
extern SFG_Structure fgStructure;
|
||||||
|
|
@ -24,7 +24,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <GL/freeglut.h>
|
#include <GL/freeglut.h>
|
||||||
#include "../Common/freeglut_internal.h"
|
#include "fg_internal.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize an EGL context for the current display.
|
* Initialize an EGL context for the current display.
|
Reference in New Issue
Block a user