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
78a43b3d
Commit
78a43b3d
authored
Mar 06, 2006
by
H. Verbeet
Committed by
Alexandre Julliard
Mar 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Fix a few FIXME's.
parent
ae21e301
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
drawprim.c
dlls/wined3d/drawprim.c
+2
-1
pixelshader.c
dlls/wined3d/pixelshader.c
+2
-1
vertexshader.c
dlls/wined3d/vertexshader.c
+2
-1
No files found.
dlls/wined3d/drawprim.c
View file @
78a43b3d
...
...
@@ -1820,7 +1820,8 @@ UINT numberOfvertices, UINT numberOfIndicies, GLenum glPrimType, const void *idx
/* check for any errors */
glGetIntegerv
(
GL_PROGRAM_ERROR_POSITION_ARB
,
&
errPos
);
if
(
errPos
!=
-
1
)
{
FIXME
(
"HW VertexShader Error at position: %d
\n
%s
\n
"
,
errPos
,
glGetString
(
GL_PROGRAM_ERROR_STRING_ARB
)
);
FIXME
(
"HW VertexShader Error at position %d: %s
\n
"
,
errPos
,
debugstr_a
((
const
char
*
)
glGetString
(
GL_PROGRAM_ERROR_STRING_ARB
)));
}
/* disable any attribs */
...
...
dlls/wined3d/pixelshader.c
View file @
78a43b3d
...
...
@@ -1512,7 +1512,8 @@ inline static VOID IWineD3DPixelShaderImpl_GenerateProgramArbHW(IWineD3DPixelSha
if
(
glGetError
()
==
GL_INVALID_OPERATION
)
{
GLint
errPos
;
glGetIntegerv
(
GL_PROGRAM_ERROR_POSITION_ARB
,
&
errPos
);
FIXME
(
"HW PixelShader Error at position: %d
\n
%s
\n
"
,
errPos
,
glGetString
(
GL_PROGRAM_ERROR_STRING_ARB
));
FIXME
(
"HW PixelShader Error at position %d: %s
\n
"
,
errPos
,
debugstr_a
((
const
char
*
)
glGetString
(
GL_PROGRAM_ERROR_STRING_ARB
)));
This
->
prgId
=
-
1
;
}
}
...
...
dlls/wined3d/vertexshader.c
View file @
78a43b3d
...
...
@@ -1650,7 +1650,8 @@ inline static VOID IWineD3DVertexShaderImpl_GenerateProgramArbHW(IWineD3DVertexS
if
(
glGetError
()
==
GL_INVALID_OPERATION
)
{
GLint
errPos
;
glGetIntegerv
(
GL_PROGRAM_ERROR_POSITION_ARB
,
&
errPos
);
FIXME
(
"HW VertexShader Error at position: %d
\n
%s
\n
"
,
errPos
,
glGetString
(
GL_PROGRAM_ERROR_STRING_ARB
));
FIXME
(
"HW VertexShader Error at position %d: %s
\n
"
,
errPos
,
debugstr_a
((
const
char
*
)
glGetString
(
GL_PROGRAM_ERROR_STRING_ARB
)));
This
->
prgId
=
-
1
;
}
}
...
...
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