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
0d6eaf36
Commit
0d6eaf36
authored
Apr 16, 2006
by
Ivan Gyurdiev
Committed by
Alexandre Julliard
Apr 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Skip unhandled opcodes in vshaders.
parent
d486b93e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
pixelshader.c
dlls/wined3d/pixelshader.c
+1
-1
vertexshader.c
dlls/wined3d/vertexshader.c
+4
-0
No files found.
dlls/wined3d/pixelshader.c
View file @
0d6eaf36
...
@@ -1378,7 +1378,7 @@ inline static VOID IWineD3DPixelShaderImpl_GenerateProgramArbHW(IWineD3DPixelSha
...
@@ -1378,7 +1378,7 @@ inline static VOID IWineD3DPixelShaderImpl_GenerateProgramArbHW(IWineD3DPixelSha
}
else
{
}
else
{
FIXME
(
"Can't handle opcode %s in hwShader
\n
"
,
curOpcode
->
name
);
FIXME
(
"Can't handle opcode %s in hwShader
\n
"
,
curOpcode
->
name
);
}
}
pToken
+=
curOpcode
->
num_params
;
/* maybe + 1 */
pToken
+=
curOpcode
->
num_params
;
continue
;
continue
;
}
}
...
...
dlls/wined3d/vertexshader.c
View file @
0d6eaf36
...
@@ -1672,7 +1672,11 @@ inline static VOID IWineD3DVertexShaderImpl_GenerateProgramArbHW(IWineD3DVertexS
...
@@ -1672,7 +1672,11 @@ inline static VOID IWineD3DVertexShaderImpl_GenerateProgramArbHW(IWineD3DVertexS
}
else
{
}
else
{
FIXME
(
"Can't handle opcode %s in hwShader
\n
"
,
curOpcode
->
name
);
FIXME
(
"Can't handle opcode %s in hwShader
\n
"
,
curOpcode
->
name
);
}
}
pToken
+=
curOpcode
->
num_params
;
continue
;
}
}
if
(
curOpcode
->
num_params
>
0
)
{
if
(
curOpcode
->
num_params
>
0
)
{
vshader_program_add_param
(
This
,
*
pToken
,
FALSE
,
tmpLine
);
vshader_program_add_param
(
This
,
*
pToken
,
FALSE
,
tmpLine
);
...
...
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