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
0f38a60d
Commit
0f38a60d
authored
Oct 10, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
7e77ecdf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
visual.c
dlls/d3d9/tests/visual.c
+1
-1
d3dxof.c
dlls/d3dxof/d3dxof.c
+2
-2
swapchain_base.c
dlls/wined3d/swapchain_base.c
+5
-5
No files found.
dlls/d3d9/tests/visual.c
View file @
0f38a60d
...
...
@@ -9687,7 +9687,7 @@ static void zwriteenable_test(IDirect3DDevice9 *device) {
ok
(
hr
==
D3D_OK
,
"IDirect3DDevice9_BeginScene failed with 0x%08x
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
{
/* The Z buffer is filled with 1.0. Draw a red quad with z = 0.1, zenable = D3DZB_FALSE, zwriteenable = TRUE.
* The red color is written because the z test is disabled. The question is wether the z = 0.1 values
* The red color is written because the z test is disabled. The question is w
h
ether the z = 0.1 values
* are written into the Z buffer. After the draw, set zenable = TRUE and draw a green quad at z = 0.9.
* If the values are written, the z test will fail(0.9 > 0.1) and the red color remains. If the values
* are not written, the z test succeeds(0.9 < 1.0) and the green color is written. It turns out that
...
...
dlls/d3dxof/d3dxof.c
View file @
0f38a60d
...
...
@@ -1300,7 +1300,7 @@ static HRESULT WINAPI IDirectXFileDataImpl_QueryInterface(IDirectXFileData* ifac
return
S_OK
;
}
/* Do not print an error for interfaces that can be queried to retr
ei
ve the type of the object */
/* Do not print an error for interfaces that can be queried to retr
ie
ve the type of the object */
if
(
!
IsEqualGUID
(
riid
,
&
IID_IDirectXFileBinary
)
&&
!
IsEqualGUID
(
riid
,
&
IID_IDirectXFileDataReference
))
ERR
(
"(%p)->(%s,%p),not found
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
...
...
@@ -1520,7 +1520,7 @@ static HRESULT WINAPI IDirectXFileDataReferenceImpl_QueryInterface(IDirectXFileD
return
S_OK
;
}
/* Do not print an error for interfaces that can be queried to retr
ei
ve the type of the object */
/* Do not print an error for interfaces that can be queried to retr
ie
ve the type of the object */
if
(
!
IsEqualGUID
(
riid
,
&
IID_IDirectXFileData
)
&&
!
IsEqualGUID
(
riid
,
&
IID_IDirectXFileBinary
))
ERR
(
"(%p)->(%s,%p),not found
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
...
...
dlls/wined3d/swapchain_base.c
View file @
0f38a60d
...
...
@@ -95,15 +95,15 @@ HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetBackBuffer(IWineD3DSwapChain *iface,
if
(
iBackBuffer
>
This
->
presentParms
.
BackBufferCount
-
1
)
{
TRACE
(
"Back buffer count out of range
\n
"
);
/* Native d3d9 doesn't set NULL here, just as wine's d3d9. But set it
here
*
in wined3d to avoid problems in other libs
*/
/* Native d3d9 doesn't set NULL here, just as wine's d3d9. But set it
* here
in wined3d to avoid problems in other libs
*/
*
ppBackBuffer
=
NULL
;
return
WINED3DERR_INVALIDCALL
;
}
/* Return invalid if there is no backbufferarray, otherwise it will crash when ddraw is
* used (there This->backBuffer is al
lways NULL). We need this because this function have
/* Return invalid if there is no backbuffer
array, otherwise it will crash when ddraw is
* used (there This->backBuffer is al
ways NULL). We need this because this function has
* to be called from IWineD3DStateBlockImpl_InitStartupStateBlock to get the default
* scissorrect dimensions. */
if
(
!
This
->
backBuffer
)
{
...
...
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