Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ea4de99f
Commit
ea4de99f
authored
May 08, 2022
by
Chip Davis
Committed by
Alexandre Julliard
May 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Move WINED3DFMT_FLAG_CAST_TO_BLOCK to the attributes group.
Signed-off-by:
Chip Davis
<
cdavis5x@gmail.com
>
parent
03196b9f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
39 deletions
+22
-39
device.c
dlls/wined3d/device.c
+2
-2
utils.c
dlls/wined3d/utils.c
+19
-36
wined3d_private.h
dlls/wined3d/wined3d_private.h
+1
-1
No files found.
dlls/wined3d/device.c
View file @
ea4de99f
...
...
@@ -4723,9 +4723,9 @@ static bool resources_format_compatible(const struct wined3d_resource *src_resou
if
(
src_resource
->
device
->
cs
->
c
.
state
->
feature_level
<
WINED3D_FEATURE_LEVEL_10_1
)
return
false
;
if
((
src_resource
->
format_attrs
&
WINED3D_FORMAT_ATTR_BLOCKS
)
&&
(
dst_resource
->
format_
flags
&
WINED3DFMT_FLAG
_CAST_TO_BLOCK
))
&&
(
dst_resource
->
format_
attrs
&
WINED3D_FORMAT_ATTR
_CAST_TO_BLOCK
))
return
src_resource
->
format
->
block_byte_count
==
dst_resource
->
format
->
byte_count
;
if
((
src_resource
->
format_
flags
&
WINED3DFMT_FLAG
_CAST_TO_BLOCK
)
if
((
src_resource
->
format_
attrs
&
WINED3D_FORMAT_ATTR
_CAST_TO_BLOCK
)
&&
(
dst_resource
->
format_attrs
&
WINED3D_FORMAT_ATTR_BLOCKS
))
return
src_resource
->
format
->
byte_count
==
dst_resource
->
format
->
block_byte_count
;
return
false
;
...
...
dlls/wined3d/utils.c
View file @
ea4de99f
...
...
@@ -328,42 +328,25 @@ static const struct wined3d_format_base_flags format_base_flags[] =
{
WINED3DFMT_NVDB
,
WINED3D_FORMAT_ATTR_EXTENSION
},
{
WINED3DFMT_ATOC
,
WINED3D_FORMAT_ATTR_EXTENSION
},
{
WINED3DFMT_RESZ
,
WINED3D_FORMAT_ATTR_EXTENSION
},
{
WINED3DFMT_R32G32B32A32_TYPELESS
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32B32A32_FLOAT
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32B32A32_UINT
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32B32A32_SINT
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R16G16B16A16_TYPELESS
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R16G16B16A16_FLOAT
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R16G16B16A16_UNORM
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R16G16B16A16_UINT
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R16G16B16A16_SNORM
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R16G16B16A16_SINT
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32_TYPELESS
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32_FLOAT
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32_UINT
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32_SINT
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R32_TYPELESS
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R32_FLOAT
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R32_UINT
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
|
WINED3DFMT_FLAG_INDEX_BUFFER
},
{
WINED3DFMT_R32_SINT
,
0
,
WINED3DFMT_FLAG_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32B32A32_TYPELESS
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32B32A32_FLOAT
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32B32A32_UINT
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32B32A32_SINT
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R16G16B16A16_TYPELESS
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R16G16B16A16_FLOAT
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R16G16B16A16_UNORM
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R16G16B16A16_UINT
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R16G16B16A16_SNORM
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R16G16B16A16_SINT
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32_TYPELESS
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32_FLOAT
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32_UINT
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R32G32_SINT
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R32_TYPELESS
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R32_FLOAT
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R32_UINT
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
,
WINED3DFMT_FLAG_INDEX_BUFFER
},
{
WINED3DFMT_R32_SINT
,
WINED3D_FORMAT_ATTR_CAST_TO_BLOCK
},
{
WINED3DFMT_R16_UINT
,
0
,
WINED3DFMT_FLAG_INDEX_BUFFER
},
{
WINED3DFMT_A8_UNORM
,
WINED3D_FORMAT_ATTR_NORMALISED
},
...
...
dlls/wined3d/wined3d_private.h
View file @
ea4de99f
...
...
@@ -6119,6 +6119,7 @@ extern enum wined3d_format_id pixelformat_for_depth(DWORD depth) DECLSPEC_HIDDEN
#define WINED3D_FORMAT_ATTR_BROKEN_PITCH 0x00000100
#define WINED3D_FORMAT_ATTR_HEIGHT_SCALE 0x00000200
#define WINED3D_FORMAT_ATTR_MAPPABLE 0x00000400
#define WINED3D_FORMAT_ATTR_CAST_TO_BLOCK 0x00000800
/* WineD3D pixel format flags */
#define WINED3DFMT_FLAG_POSTPIXELSHADER_BLENDING 0x00000001
...
...
@@ -6137,7 +6138,6 @@ extern enum wined3d_format_id pixelformat_for_depth(DWORD depth) DECLSPEC_HIDDEN
#define WINED3DFMT_FLAG_GEN_MIPMAP 0x00400000
#define WINED3DFMT_FLAG_VERTEX_ATTRIBUTE 0x01000000
#define WINED3DFMT_FLAG_BLIT 0x02000000
#define WINED3DFMT_FLAG_CAST_TO_BLOCK 0x08000000
#define WINED3DFMT_FLAG_INDEX_BUFFER 0x10000000
struct
wined3d_rational
...
...
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