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
9880cd75
Commit
9880cd75
authored
Sep 11, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 15, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Make some variables static.
parent
e02f7b20
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
arb_program_shader.c
dlls/wined3d/arb_program_shader.c
+1
-1
directx.c
dlls/wined3d/directx.c
+1
-1
wined3d_main.c
dlls/wined3d/wined3d_main.c
+2
-2
No files found.
dlls/wined3d/arb_program_shader.c
View file @
9880cd75
...
...
@@ -4442,7 +4442,7 @@ static int sig_tree_compare(const void *key, const struct wine_rb_entry *entry)
return
compare_sig
(
key
,
e
->
sig
);
}
struct
wine_rb_functions
sig_tree_functions
=
st
atic
const
st
ruct
wine_rb_functions
sig_tree_functions
=
{
wined3d_rb_alloc
,
wined3d_rb_realloc
,
...
...
dlls/wined3d/directx.c
View file @
9880cd75
...
...
@@ -789,7 +789,7 @@ struct driver_quirk
const
char
*
description
;
};
struct
driver_quirk
quirk_table
[]
=
st
atic
const
st
ruct
driver_quirk
quirk_table
[]
=
{
{
match_ati_r300_to_500
,
...
...
dlls/wined3d/wined3d_main.c
View file @
9880cd75
...
...
@@ -32,7 +32,7 @@ int num_lock = 0;
void
(
*
CDECL
wine_tsx11_lock_ptr
)(
void
)
=
NULL
;
void
(
*
CDECL
wine_tsx11_unlock_ptr
)(
void
)
=
NULL
;
CRITICAL_SECTION
wined3d_cs
;
static
CRITICAL_SECTION
wined3d_cs
;
static
CRITICAL_SECTION_DEBUG
wined3d_cs_debug
=
{
0
,
0
,
&
wined3d_cs
,
...
...
@@ -40,7 +40,7 @@ static CRITICAL_SECTION_DEBUG wined3d_cs_debug =
&
wined3d_cs_debug
.
ProcessLocksList
},
0
,
0
,
{(
DWORD_PTR
)(
__FILE__
": wined3d_cs"
)}
};
CRITICAL_SECTION
wined3d_cs
=
{
&
wined3d_cs_debug
,
-
1
,
0
,
0
,
0
,
0
};
static
CRITICAL_SECTION
wined3d_cs
=
{
&
wined3d_cs_debug
,
-
1
,
0
,
0
,
0
,
0
};
/* When updating default value here, make sure to update winecfg as well,
* where appropriate. */
...
...
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