Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
6c8c68f7
Commit
6c8c68f7
authored
May 03, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
May 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Make wined3d_event_query_test() and resource_get_type() static.
parent
8a8c8bbd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
9 deletions
+1
-9
query.c
dlls/wined3d/query.c
+1
-1
resource.c
dlls/wined3d/resource.c
+0
-6
wined3d_private.h
dlls/wined3d/wined3d_private.h
+0
-2
No files found.
dlls/wined3d/query.c
View file @
6c8c68f7
...
...
@@ -37,7 +37,7 @@ void wined3d_event_query_destroy(struct wined3d_event_query *query)
HeapFree
(
GetProcessHeap
(),
0
,
query
);
}
enum
wined3d_event_query_result
wined3d_event_query_test
(
struct
wined3d_event_query
*
query
,
IWineD3DDeviceImpl
*
device
)
static
enum
wined3d_event_query_result
wined3d_event_query_test
(
struct
wined3d_event_query
*
query
,
IWineD3DDeviceImpl
*
device
)
{
struct
wined3d_context
*
context
;
const
struct
wined3d_gl_info
*
gl_info
;
...
...
dlls/wined3d/resource.c
View file @
6c8c68f7
...
...
@@ -272,12 +272,6 @@ DWORD resource_get_priority(const struct wined3d_resource *resource)
return
resource
->
priority
;
}
WINED3DRESOURCETYPE
resource_get_type
(
const
struct
wined3d_resource
*
resource
)
{
TRACE
(
"resource %p, returning %#x.
\n
"
,
resource
,
resource
->
resourceType
);
return
resource
->
resourceType
;
}
void
*
CDECL
wined3d_resource_get_parent
(
const
struct
wined3d_resource
*
resource
)
{
return
resource
->
parent
;
...
...
dlls/wined3d/wined3d_private.h
View file @
6c8c68f7
...
...
@@ -1027,7 +1027,6 @@ enum wined3d_event_query_result
};
void
wined3d_event_query_destroy
(
struct
wined3d_event_query
*
query
)
DECLSPEC_HIDDEN
;
enum
wined3d_event_query_result
wined3d_event_query_test
(
struct
wined3d_event_query
*
query
,
IWineD3DDeviceImpl
*
device
)
DECLSPEC_HIDDEN
;
enum
wined3d_event_query_result
wined3d_event_query_finish
(
struct
wined3d_event_query
*
query
,
IWineD3DDeviceImpl
*
device
)
DECLSPEC_HIDDEN
;
void
wined3d_event_query_issue
(
struct
wined3d_event_query
*
query
,
IWineD3DDeviceImpl
*
device
)
DECLSPEC_HIDDEN
;
BOOL
wined3d_event_query_supported
(
const
struct
wined3d_gl_info
*
gl_info
)
DECLSPEC_HIDDEN
;
...
...
@@ -1838,7 +1837,6 @@ HRESULT resource_init(struct wined3d_resource *resource, IWineD3DDeviceImpl *dev
DWORD
usage
,
WINED3DPOOL
pool
,
UINT
width
,
UINT
height
,
UINT
depth
,
UINT
size
,
void
*
parent
,
const
struct
wined3d_parent_ops
*
parent_ops
,
const
struct
wined3d_resource_ops
*
resource_ops
)
DECLSPEC_HIDDEN
;
WINED3DRESOURCETYPE
resource_get_type
(
const
struct
wined3d_resource
*
resource
)
DECLSPEC_HIDDEN
;
DWORD
resource_set_priority
(
struct
wined3d_resource
*
resource
,
DWORD
priority
)
DECLSPEC_HIDDEN
;
HRESULT
resource_set_private_data
(
struct
wined3d_resource
*
resource
,
REFGUID
guid
,
const
void
*
data
,
DWORD
data_size
,
DWORD
flags
)
DECLSPEC_HIDDEN
;
...
...
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