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
42a57b3e
Commit
42a57b3e
authored
Oct 01, 2023
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 04, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10/effect: Add support for 'not' instruction.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
parent
2055f7e2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
effect.c
dlls/d3d10/effect.c
+14
-0
effect.c
dlls/d3d10/tests/effect.c
+0
-0
No files found.
dlls/d3d10/effect.c
View file @
42a57b3e
...
...
@@ -337,6 +337,19 @@ static void pres_ineg(float **args, unsigned int n, const struct preshader_instr
}
}
static
void
pres_not
(
float
**
args
,
unsigned
int
n
,
const
struct
preshader_instr
*
instr
)
{
int
*
arg1
=
(
int
*
)
args
[
0
];
float
*
retval
=
args
[
1
];
unsigned
int
i
;
for
(
i
=
0
;
i
<
instr
->
comp_count
;
++
i
)
{
int
v
=
~
arg1
[
0
];
retval
[
i
]
=
*
(
float
*
)
&
v
;
}
}
static
void
pres_itof
(
float
**
args
,
unsigned
int
n
,
const
struct
preshader_instr
*
instr
)
{
float
*
retval
=
args
[
1
];
...
...
@@ -721,6 +734,7 @@ static const struct preshader_op_info preshader_ops[] =
{
0x10c
,
"atan"
,
pres_atan
},
{
0x112
,
"sqrt"
,
pres_sqrt
},
{
0x120
,
"ineg"
,
pres_ineg
},
{
0x121
,
"not"
,
pres_not
},
{
0x130
,
"itof"
,
pres_itof
},
{
0x131
,
"utof"
,
pres_utof
},
{
0x133
,
"ftou"
,
pres_ftou
},
...
...
dlls/d3d10/tests/effect.c
View file @
42a57b3e
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