Pandora: Fixed compile warnings in video implementation (thanks, Bombo!).
Fixes Bugzilla #2734.
parent
427472fe2e
commit
53ac57128b
|
@ -41,8 +41,6 @@
|
||||||
static NativeWindowType hNativeWnd = 0; /* A handle to the window we will create. */
|
static NativeWindowType hNativeWnd = 0; /* A handle to the window we will create. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static SDL_bool PND_initialized = SDL_FALSE;
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
PND_available(void)
|
PND_available(void)
|
||||||
{
|
{
|
||||||
|
@ -52,8 +50,6 @@ PND_available(void)
|
||||||
static void
|
static void
|
||||||
PND_destroy(SDL_VideoDevice * device)
|
PND_destroy(SDL_VideoDevice * device)
|
||||||
{
|
{
|
||||||
SDL_VideoData *phdata = (SDL_VideoData *) device->driverdata;
|
|
||||||
|
|
||||||
if (device->driverdata != NULL) {
|
if (device->driverdata != NULL) {
|
||||||
device->driverdata = NULL;
|
device->driverdata = NULL;
|
||||||
}
|
}
|
||||||
|
@ -203,10 +199,6 @@ PND_createwindow(_THIS, SDL_Window * window)
|
||||||
|
|
||||||
SDL_WindowData *wdata;
|
SDL_WindowData *wdata;
|
||||||
|
|
||||||
uint32_t winargc = 0;
|
|
||||||
int32_t status;
|
|
||||||
|
|
||||||
|
|
||||||
/* Allocate window internal data */
|
/* Allocate window internal data */
|
||||||
wdata = (SDL_WindowData *) SDL_calloc(1, sizeof(SDL_WindowData));
|
wdata = (SDL_WindowData *) SDL_calloc(1, sizeof(SDL_WindowData));
|
||||||
if (wdata == NULL) {
|
if (wdata == NULL) {
|
||||||
|
@ -291,7 +283,7 @@ PND_restorewindow(_THIS, SDL_Window * window)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
void
|
void
|
||||||
PND_setwindowgrab(_THIS, SDL_Window * window)
|
PND_setwindowgrab(_THIS, SDL_Window * window, SDL_bool grabbed)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
void
|
void
|
||||||
|
@ -325,8 +317,6 @@ PND_getwindowwminfo(_THIS, SDL_Window * window, struct SDL_SysWMinfo *info)
|
||||||
int
|
int
|
||||||
PND_gl_loadlibrary(_THIS, const char *path)
|
PND_gl_loadlibrary(_THIS, const char *path)
|
||||||
{
|
{
|
||||||
SDL_VideoData *phdata = (SDL_VideoData *) _this->driverdata;
|
|
||||||
|
|
||||||
/* Check if OpenGL ES library is specified for GF driver */
|
/* Check if OpenGL ES library is specified for GF driver */
|
||||||
if (path == NULL) {
|
if (path == NULL) {
|
||||||
path = SDL_getenv("SDL_OPENGL_LIBRARY");
|
path = SDL_getenv("SDL_OPENGL_LIBRARY");
|
||||||
|
@ -364,7 +354,6 @@ PND_gl_loadlibrary(_THIS, const char *path)
|
||||||
void *
|
void *
|
||||||
PND_gl_getprocaddres(_THIS, const char *proc)
|
PND_gl_getprocaddres(_THIS, const char *proc)
|
||||||
{
|
{
|
||||||
SDL_VideoData *phdata = (SDL_VideoData *) _this->driverdata;
|
|
||||||
void *function_address;
|
void *function_address;
|
||||||
|
|
||||||
/* Try to get function address through the egl interface */
|
/* Try to get function address through the egl interface */
|
||||||
|
@ -408,10 +397,7 @@ PND_gl_createcontext(_THIS, SDL_Window * window)
|
||||||
{
|
{
|
||||||
SDL_VideoData *phdata = (SDL_VideoData *) _this->driverdata;
|
SDL_VideoData *phdata = (SDL_VideoData *) _this->driverdata;
|
||||||
SDL_WindowData *wdata = (SDL_WindowData *) window->driverdata;
|
SDL_WindowData *wdata = (SDL_WindowData *) window->driverdata;
|
||||||
SDL_DisplayData *didata =
|
|
||||||
(SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
|
|
||||||
EGLBoolean status;
|
EGLBoolean status;
|
||||||
int32_t gfstatus;
|
|
||||||
EGLint configs;
|
EGLint configs;
|
||||||
uint32_t attr_pos;
|
uint32_t attr_pos;
|
||||||
EGLint attr_value;
|
EGLint attr_value;
|
||||||
|
@ -791,9 +777,6 @@ PND_gl_swapwindow(_THIS, SDL_Window * window)
|
||||||
{
|
{
|
||||||
SDL_VideoData *phdata = (SDL_VideoData *) _this->driverdata;
|
SDL_VideoData *phdata = (SDL_VideoData *) _this->driverdata;
|
||||||
SDL_WindowData *wdata = (SDL_WindowData *) window->driverdata;
|
SDL_WindowData *wdata = (SDL_WindowData *) window->driverdata;
|
||||||
SDL_DisplayData *didata =
|
|
||||||
(SDL_DisplayData *) SDL_GetDisplayForWindow(window)->driverdata;
|
|
||||||
|
|
||||||
|
|
||||||
if (phdata->egl_initialized != SDL_TRUE) {
|
if (phdata->egl_initialized != SDL_TRUE) {
|
||||||
SDL_SetError("PND: GLES initialization failed, no OpenGL ES support");
|
SDL_SetError("PND: GLES initialization failed, no OpenGL ES support");
|
||||||
|
|
|
@ -77,7 +77,7 @@ void PND_raisewindow(_THIS, SDL_Window * window);
|
||||||
void PND_maximizewindow(_THIS, SDL_Window * window);
|
void PND_maximizewindow(_THIS, SDL_Window * window);
|
||||||
void PND_minimizewindow(_THIS, SDL_Window * window);
|
void PND_minimizewindow(_THIS, SDL_Window * window);
|
||||||
void PND_restorewindow(_THIS, SDL_Window * window);
|
void PND_restorewindow(_THIS, SDL_Window * window);
|
||||||
void PND_setwindowgrab(_THIS, SDL_Window * window);
|
void PND_setwindowgrab(_THIS, SDL_Window * window, SDL_bool grabbed);
|
||||||
void PND_destroywindow(_THIS, SDL_Window * window);
|
void PND_destroywindow(_THIS, SDL_Window * window);
|
||||||
|
|
||||||
/* Window manager function */
|
/* Window manager function */
|
||||||
|
|
Loading…
Reference in New Issue