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
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
25 deletions
+41
-25
directx.c
dlls/wined3d/directx.c
+6
-0
utils.c
dlls/wined3d/utils.c
+34
-25
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
if
(
!
cfg
)
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
(
!
getColorBits
(
format_desc
,
&
redSize
,
&
greenSize
,
&
blueSize
,
&
alphaSize
,
&
colorBits
))
{
...
...
@@ -2906,6 +2909,9 @@ static BOOL IWineD3DImpl_IsPixelFormatCompatibleWithDepthFmt(const struct wined3
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
))
lockable
=
TRUE
;
...
...
dlls/wined3d/utils.c
View file @
f74de3ab
...
...
@@ -141,31 +141,40 @@ struct wined3d_format_base_flags
static
const
struct
wined3d_format_base_flags
format_base_flags
[]
=
{
{
WINED3DFMT_UYVY
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_YUY2
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_YV12
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_DXT1
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_DXT2
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_DXT3
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_DXT4
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_DXT5
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_MULTI2_ARGB8
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_G8R8_G8B8
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_R8G8_B8G8
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_P8_UINT
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B8G8R8_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B8G8R8A8_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B8G8R8X8_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B5G6R5_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B5G5R5X1_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B5G5R5A1_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B4G4R4A4_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B4G4R4X4_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_R8G8B8A8_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_R8G8B8X8_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_ATI2N
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_NVHU
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_NVHS
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_UYVY
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_YUY2
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_YV12
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_DXT1
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_DXT2
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_DXT3
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_DXT4
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_DXT5
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_MULTI2_ARGB8
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_G8R8_G8B8
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_R8G8_B8G8
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_P8_UINT
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B8G8R8_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B8G8R8A8_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B8G8R8X8_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B5G6R5_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B5G5R5X1_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B5G5R5A1_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B4G4R4A4_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_B4G4R4X4_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_R8G8B8A8_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_R8G8B8X8_UNORM
,
WINED3DFMT_FLAG_GETDC
},
{
WINED3DFMT_ATI2N
,
WINED3DFMT_FLAG_FOURCC
},
{
WINED3DFMT_NVHU
,
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
...
...
dlls/wined3d/wined3d_private.h
View file @
f74de3ab
...
...
@@ -2963,6 +2963,7 @@ extern WINED3DFORMAT pixelformat_for_depth(DWORD depth) DECLSPEC_HIDDEN;
#define WINED3DFMT_FLAG_FBO_ATTACHABLE 0x40
#define WINED3DFMT_FLAG_COMPRESSED 0x80
#define WINED3DFMT_FLAG_GETDC 0x100
#define WINED3DFMT_FLAG_FLOAT 0x200
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