Skip to content
Snippets Groups Projects
Commit 123c12ad authored by Jeremy Soller's avatar Jeremy Soller
Browse files

sdl: Require 32 bpp

parent 17507219
No related branches found
No related tags found
No related merge requests found
...@@ -418,7 +418,7 @@ diff -rupN sdl/src/video/orbital/SDL_orbitalscancode.h sdl-redox/src/video/orbit ...@@ -418,7 +418,7 @@ diff -rupN sdl/src/video/orbital/SDL_orbitalscancode.h sdl-redox/src/video/orbit
diff -rupN sdl/src/video/orbital/SDL_orbitalvideo.c sdl-redox/src/video/orbital/SDL_orbitalvideo.c diff -rupN sdl/src/video/orbital/SDL_orbitalvideo.c sdl-redox/src/video/orbital/SDL_orbitalvideo.c
--- sdl/src/video/orbital/SDL_orbitalvideo.c 1969-12-31 17:00:00.000000000 -0700 --- sdl/src/video/orbital/SDL_orbitalvideo.c 1969-12-31 17:00:00.000000000 -0700
+++ sdl-redox/src/video/orbital/SDL_orbitalvideo.c 2017-11-21 19:34:44.269053445 -0700 +++ sdl-redox/src/video/orbital/SDL_orbitalvideo.c 2017-11-21 19:34:44.269053445 -0700
@@ -0,0 +1,261 @@ @@ -0,0 +1,266 @@
+/* +/*
+ SDL - Simple DirectMedia Layer + SDL - Simple DirectMedia Layer
+ Copyright (C) 1997-2012 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga
...@@ -574,6 +574,11 @@ diff -rupN sdl/src/video/orbital/SDL_orbitalvideo.c sdl-redox/src/video/orbital/ ...@@ -574,6 +574,11 @@ diff -rupN sdl/src/video/orbital/SDL_orbitalvideo.c sdl-redox/src/video/orbital/
+SDL_Surface *ORBITAL_SetVideoMode(_THIS, SDL_Surface *current, +SDL_Surface *ORBITAL_SetVideoMode(_THIS, SDL_Surface *current,
+ int width, int height, int bpp, Uint32 flags) + int width, int height, int bpp, Uint32 flags)
+{ +{
+ if ( bpp != 32 ) {
+ SDL_SetError("Unsupported color depth - must use 32-bits per pixel");
+ return(NULL);
+ }
+
+ if ( this->hidden->fd ) { + if ( this->hidden->fd ) {
+ close( this->hidden->fd ); + close( this->hidden->fd );
+ this->hidden->fd = 0; + this->hidden->fd = 0;
...@@ -586,7 +591,7 @@ diff -rupN sdl/src/video/orbital/SDL_orbitalvideo.c sdl-redox/src/video/orbital/ ...@@ -586,7 +591,7 @@ diff -rupN sdl/src/video/orbital/SDL_orbitalvideo.c sdl-redox/src/video/orbital/
+ +
+ char path[4096]; + char path[4096];
+ snprintf(path, 4096, "orbital:a/-1/-1/%d/%d/SDL", width, height); + snprintf(path, 4096, "orbital:a/-1/-1/%d/%d/SDL", width, height);
+ this->hidden->fd = open(path, O_RDONLY); + this->hidden->fd = open(path, O_RDWR);
+ if ( this->hidden->fd <= 0 ) { + if ( this->hidden->fd <= 0 ) {
+ this->hidden->fd = 0; + this->hidden->fd = 0;
+ SDL_SetError("Couldn't create window for requested mode"); + SDL_SetError("Couldn't create window for requested mode");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment