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
f74de3ab
Commit
f74de3ab
authored
Mar 24, 2010
by
Stefan Dösinger
Committed by
Alexandre Julliard
Mar 26, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Don't advertise float formats as supported by WGL.
parent
7b43cb18
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
0 deletions
+16
-0
directx.c
dlls/wined3d/directx.c
+6
-0
utils.c
dlls/wined3d/utils.c
+9
-0
wined3d_private.h
dlls/wined3d/wined3d_private.h
+1
-0
No files found.
dlls/wined3d/directx.c
View file @
f74de3ab
...
@@ -2865,6 +2865,9 @@ static BOOL IWineD3DImpl_IsPixelFormatCompatibleWithRenderFmt(const struct wined
...
@@ -2865,6 +2865,9 @@ static BOOL IWineD3DImpl_IsPixelFormatCompatibleWithRenderFmt(const struct wined
if
(
!
cfg
)
if
(
!
cfg
)
return
FALSE
;
return
FALSE
;
/* Float formats need FBOs. If FBOs are used this function isn't called */
if
(
format_desc
->
Flags
&
WINED3DFMT_FLAG_FLOAT
)
return
FALSE
;
if
(
cfg
->
iPixelType
==
WGL_TYPE_RGBA_ARB
)
{
/* Integer RGBA formats */
if
(
cfg
->
iPixelType
==
WGL_TYPE_RGBA_ARB
)
{
/* Integer RGBA formats */
if
(
!
getColorBits
(
format_desc
,
&
redSize
,
&
greenSize
,
&
blueSize
,
&
alphaSize
,
&
colorBits
))
if
(
!
getColorBits
(
format_desc
,
&
redSize
,
&
greenSize
,
&
blueSize
,
&
alphaSize
,
&
colorBits
))
{
{
...
@@ -2906,6 +2909,9 @@ static BOOL IWineD3DImpl_IsPixelFormatCompatibleWithDepthFmt(const struct wined3
...
@@ -2906,6 +2909,9 @@ static BOOL IWineD3DImpl_IsPixelFormatCompatibleWithDepthFmt(const struct wined3
return
FALSE
;
return
FALSE
;
}
}
/* Float formats need FBOs. If FBOs are used this function isn't called */
if
(
format_desc
->
Flags
&
WINED3DFMT_FLAG_FLOAT
)
return
FALSE
;
if
((
format_desc
->
format
==
WINED3DFMT_D16_LOCKABLE
)
||
(
format_desc
->
format
==
WINED3DFMT_D32_FLOAT
))
if
((
format_desc
->
format
==
WINED3DFMT_D16_LOCKABLE
)
||
(
format_desc
->
format
==
WINED3DFMT_D32_FLOAT
))
lockable
=
TRUE
;
lockable
=
TRUE
;
...
...
dlls/wined3d/utils.c
View file @
f74de3ab
...
@@ -166,6 +166,15 @@ static const struct wined3d_format_base_flags format_base_flags[] =
...
@@ -166,6 +166,15 @@ static const struct wined3d_format_base_flags format_base_flags[] =
{
WINED3DFMT_ATI2N
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_ATI2N
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_NVHU
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_NVHU
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_NVHS
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_NVHS
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_R32_FLOAT
,
WINED3DFMT_FLAG_FLOAT
},
{
WINED3DFMT_R32G32_FLOAT
,
WINED3DFMT_FLAG_FLOAT
},
{
WINED3DFMT_R32G32B32_FLOAT
,
WINED3DFMT_FLAG_FLOAT
},
{
WINED3DFMT_R32G32B32A32_FLOAT
,
WINED3DFMT_FLAG_FLOAT
},
{
WINED3DFMT_R16_FLOAT
,
WINED3DFMT_FLAG_FLOAT
},
{
WINED3DFMT_R16G16_FLOAT
,
WINED3DFMT_FLAG_FLOAT
},
{
WINED3DFMT_R16G16B16A16_FLOAT
,
WINED3DFMT_FLAG_FLOAT
},
{
WINED3DFMT_D32_FLOAT
,
WINED3DFMT_FLAG_FLOAT
},
{
WINED3DFMT_S8_UINT_D24_FLOAT
,
WINED3DFMT_FLAG_FLOAT
},
};
};
struct
wined3d_format_compression_info
struct
wined3d_format_compression_info
...
...
dlls/wined3d/wined3d_private.h
View file @
f74de3ab
...
@@ -2963,6 +2963,7 @@ extern WINED3DFORMAT pixelformat_for_depth(DWORD depth) DECLSPEC_HIDDEN;
...
@@ -2963,6 +2963,7 @@ extern WINED3DFORMAT pixelformat_for_depth(DWORD depth) DECLSPEC_HIDDEN;
#define WINED3DFMT_FLAG_FBO_ATTACHABLE 0x40
#define WINED3DFMT_FLAG_FBO_ATTACHABLE 0x40
#define WINED3DFMT_FLAG_COMPRESSED 0x80
#define WINED3DFMT_FLAG_COMPRESSED 0x80
#define WINED3DFMT_FLAG_GETDC 0x100
#define WINED3DFMT_FLAG_GETDC 0x100
#define WINED3DFMT_FLAG_FLOAT 0x200
struct
wined3d_format_desc
struct
wined3d_format_desc
{
{
...
...
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