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
a331ed03
Commit
a331ed03
authored
May 03, 2012
by
Henri Verbeet
Committed by
Alexandre Julliard
May 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Properly check for transformed position in buffer_check_attribute().
parent
6b9018cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
buffer.c
dlls/wined3d/buffer.c
+7
-1
No files found.
dlls/wined3d/buffer.c
View file @
a331ed03
...
...
@@ -302,8 +302,14 @@ static BOOL buffer_check_attribute(struct wined3d_buffer *This, const struct win
if
(
!
is_ffp_color
)
FIXME
(
"Test for non-color fixed function WINED3DFMT_B8G8R8A8_UNORM format
\n
"
);
}
else
if
(
is_ffp_position
&&
format
==
WINED3DFMT_R32G32B32A32_FLOAT
)
else
if
(
is_ffp_position
&&
si
->
position_transformed
)
{
if
(
format
!=
WINED3DFMT_R32G32B32A32_FLOAT
)
{
FIXME
(
"Unexpected format %s for transformed position.
\n
"
,
debug_d3dformat
(
format
));
return
FALSE
;
}
ret
=
buffer_process_converted_attribute
(
This
,
CONV_POSITIONT
,
attrib
,
stride_this_run
);
}
else
if
(
This
->
conversion_map
)
...
...
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