Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
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
Main
Synchronet
Commits
f35e4d76
Commit
f35e4d76
authored
17 years ago
by
deuce
Browse files
Options
Downloads
Patches
Plain Diff
Stop using double buffering, use MapRGB rather than palettized colours.
parent
f7c87c18
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/conio/sdl_con.c
+15
-1
15 additions, 1 deletion
src/conio/sdl_con.c
src/conio/sdlfuncs.c
+9
-0
9 additions, 0 deletions
src/conio/sdlfuncs.c
src/conio/sdlfuncs.h
+1
-0
1 addition, 0 deletions
src/conio/sdlfuncs.h
with
25 additions
and
1 deletion
src/conio/sdl_con.c
+
15
−
1
View file @
f35e4d76
...
...
@@ -1146,11 +1146,23 @@ int sdl_video_event_thread(void *data)
for
(
y
=
0
;
y
<
rect
->
height
;
y
++
)
{
for
(
x
=
0
;
x
<
rect
->
width
;
x
++
)
{
int
palette_entry
;
r
.
x
=
x
*
vstat
.
scaling
;
r
.
y
=
y
*
vstat
.
scaling
;
r
.
w
=
vstat
.
scaling
;
r
.
h
=
vstat
.
scaling
;
sdl
.
FillRect
(
new_rect
,
&
r
,
rect
->
data
[
y
*
rect
->
width
+
x
]);
palette_entry
=
rect
->
data
[
y
*
rect
->
width
+
x
];
#ifdef OFFSCREEN_FILL
sdl
.
FillRect
(
new_rect
,
&
r
,
sdl
.
MapRGB
(
new_rect
->
format
,
dac_default
[
vstat
.
palette
[
palette_entry
]].
red
,
dac_default
[
vstat
.
palette
[
palette_entry
]].
green
,
dac_default
[
vstat
.
palette
[
palette_entry
]].
blue
));
#else
sdl
.
FillRect
(
win
,
&
r
,
sdl
.
MapRGB
(
win
->
format
,
dac_default
[
vstat
.
palette
[
palette_entry
]].
red
,
dac_default
[
vstat
.
palette
[
palette_entry
]].
green
,
dac_default
[
vstat
.
palette
[
palette_entry
]].
blue
));
#endif
}
}
r
.
x
=
0
;
...
...
@@ -1161,7 +1173,9 @@ int sdl_video_event_thread(void *data)
dst
.
y
=
rect
->
y
*
vstat
.
scaling
;
dst
.
w
=
rect
->
width
*
vstat
.
scaling
;
dst
.
h
=
rect
->
height
*
vstat
.
scaling
;
#ifdef OFFSCREEN_FILL
sdl
.
BlitSurface
(
new_rect
,
&
r
,
win
,
&
dst
);
#endif
sdl
.
UpdateRects
(
win
,
1
,
&
dst
);
free
(
rect
->
data
);
free
(
rect
);
...
...
This diff is collapsed.
Click to expand it.
src/conio/sdlfuncs.c
+
9
−
0
View file @
f35e4d76
...
...
@@ -77,6 +77,7 @@ int load_sdl_funcs(struct sdlfuncs *sdlf)
sdlf
->
LockAudio
=
SDL_LockAudio
;
sdlf
->
UnlockAudio
=
SDL_UnlockAudio
;
sdlf
->
GetAudioStatus
=
SDL_GetAudioStatus
;
sdlf
->
MapRGB
=
SDL_MapRGB
;
sdlf
->
gotfuncs
=
1
;
sdl_funcs_loaded
=
1
;
return
(
0
);
...
...
@@ -260,6 +261,10 @@ int load_sdl_funcs(struct sdlfuncs *sdlf)
FreeLibrary
(
sdl_dll
);
return
(
-
1
);
}
if
((
sdlf
->
MapRGB
=
(
void
*
)
GetProcAddress
(
sdl_dll
,
"SDL_MapRGB"
))
==
NULL
)
{
FreeLibrary
(
sdl_dll
);
return
(
-
1
);
}
sdlf
->
gotfuncs
=
1
;
sdl_funcs_loaded
=
1
;
return
(
0
);
...
...
@@ -437,6 +442,10 @@ int load_sdl_funcs(struct sdlfuncs *sdlf)
dlclose
(
sdl_dll
);
return
(
-
1
);
}
if
((
sdlf
->
MapRGB
=
dlsym
(
sdl_dll
,
"SDL_MapRGB"
))
==
NULL
)
{
dlclose
(
sdl_dll
);
return
(
-
1
);
}
sdlf
->
gotfuncs
=
1
;
sdl_funcs_loaded
=
1
;
return
(
0
);
...
...
This diff is collapsed.
Click to expand it.
src/conio/sdlfuncs.h
+
1
−
0
View file @
f35e4d76
...
...
@@ -51,6 +51,7 @@ struct sdlfuncs {
void
(
*
UnlockAudio
)(
void
);
void
(
*
PauseAudio
)(
int
pause_on
);
SDL_audiostatus
(
*
GetAudioStatus
)(
void
);
Uint32
(
*
MapRGB
)
(
SDL_PixelFormat
*
fmt
,
Uint8
r
,
Uint8
g
,
Uint8
b
);
int
gotfuncs
;
};
...
...
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