Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cookbook
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Wildan Mubarok
cookbook
Commits
123c12ad
Commit
123c12ad
authored
7 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Patches
Plain Diff
sdl: Require 32 bpp
parent
17507219
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
recipes/sdl/01_orbital.patch
+7
-2
7 additions, 2 deletions
recipes/sdl/01_orbital.patch
with
7 additions
and
2 deletions
recipes/sdl/01_orbital.patch
+
7
−
2
View file @
123c12ad
...
@@ -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,26
1
@@
@@ -0,0 +1,26
6
@@
+/*
+/*
+ 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_RD
ONLY
);
+ this->hidden->fd = open(path, O_RD
WR
);
+ 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");
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment