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
c96c6b98
Commit
c96c6b98
authored
Mar 18, 2023
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 20, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10/effect: Add support for imax instruction.
parent
8e2412fc
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
42 deletions
+59
-42
effect.c
dlls/d3d10/effect.c
+14
-0
effect.c
dlls/d3d10/tests/effect.c
+45
-42
No files found.
dlls/d3d10/effect.c
View file @
c96c6b98
...
...
@@ -343,6 +343,19 @@ static void pres_div(float **args, unsigned int n, const struct preshader_instr
retval
[
i
]
=
args
[
0
][
instr
->
scalar
?
0
:
i
]
/
args
[
1
][
i
];
}
static
void
pres_imax
(
float
**
args
,
unsigned
int
n
,
const
struct
preshader_instr
*
instr
)
{
int
*
arg1
=
(
int
*
)
args
[
0
],
*
arg2
=
(
int
*
)
args
[
1
];
float
*
retval
=
args
[
2
];
unsigned
int
i
;
for
(
i
=
0
;
i
<
instr
->
comp_count
;
++
i
)
{
int
v
=
max
(
arg1
[
instr
->
scalar
?
0
:
i
],
arg2
[
i
]);
retval
[
i
]
=
*
(
float
*
)
&
v
;
}
}
struct
preshader_op_info
{
int
opcode
;
...
...
@@ -366,6 +379,7 @@ static const struct preshader_op_info preshader_ops[] =
{
0x204
,
"add"
,
pres_add
},
{
0x205
,
"mul"
,
pres_mul
},
{
0x208
,
"div"
,
pres_div
},
{
0x21e
,
"imax"
,
pres_imax
},
};
static
int
__cdecl
preshader_op_compare
(
const
void
*
a
,
const
void
*
b
)
...
...
dlls/d3d10/tests/effect.c
View file @
c96c6b98
This diff is collapsed.
Click to expand it.
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