Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
48455b36
Commit
48455b36
authored
Sep 13, 2000
by
Lionel Ulmer
Committed by
Alexandre Julliard
Sep 13, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade also 15bpp to 16bpp surfaces.
parent
34899975
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
13 deletions
+16
-13
main.c
dlls/ddraw/ddraw/main.c
+16
-13
No files found.
dlls/ddraw/ddraw/main.c
View file @
48455b36
...
@@ -549,19 +549,22 @@ HRESULT common_off_screen_CreateSurface(
...
@@ -549,19 +549,22 @@ HRESULT common_off_screen_CreateSurface(
}
}
bpp
=
GET_BPP
(
lpdsf
->
s
.
surface_desc
);
bpp
=
GET_BPP
(
lpdsf
->
s
.
surface_desc
);
if
(
bpp
!=
PFGET_BPP
(
This
->
d
->
directdraw_pixelformat
))
{
/* When the application is requesting a 24 bpp surface and the Direct Draw bpp
/* When the application is requesting a 24 bpp surface and the Direct Draw bpp
is set to 32, we 'upgrade' the requested bpp to 32 to make the blit faster
is set to 32, we 'upgrade' the requested bpp to 32 to make the blit faster
from off-screen surface to visible surfaces.
from off-screen surface to visible surfaces.
This can also happen with 15 / 16 bpp.
With this, Windows Media Player works in 32 bpp mode.
Lionel */
With this, Windows Media Player works in 32 bpp mode.
if
((
bpp
==
3
)
&&
(
PFGET_BPP
(
This
->
d
->
directdraw_pixelformat
)
==
4
))
{
Lionel
TRACE
(
"Warning: 'upgrading' requested 24 bpp format to 32 bpp for efficiencies reasons
\n
"
);
*/
TRACE
(
" some applications may have problems with it.
\n
"
);
if
(((
bpp
==
3
)
&&
(
PFGET_BPP
(
This
->
d
->
directdraw_pixelformat
)
==
4
))
||
bpp
=
PFGET_BPP
(
This
->
d
->
directdraw_pixelformat
);
((
bpp
==
2
)
&&
(
PFGET_BPP
(
This
->
d
->
directdraw_pixelformat
)
==
2
)
&&
lpdsf
->
s
.
surface_desc
.
ddpfPixelFormat
=
This
->
d
->
directdraw_pixelformat
;
(
lpdsf
->
s
.
surface_desc
.
ddpfPixelFormat
.
u1
.
dwRBitMask
!=
This
->
d
->
directdraw_pixelformat
.
u1
.
dwRBitMask
)))
{
}
TRACE
(
"Warning: 'upgrading' requested pixel format to screen pixel format for blit efficiency
\n
"
);
TRACE
(
" some applications may have problems with it.
\n
"
);
bpp
=
PFGET_BPP
(
This
->
d
->
directdraw_pixelformat
);
lpdsf
->
s
.
surface_desc
.
ddpfPixelFormat
=
This
->
d
->
directdraw_pixelformat
;
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment