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
3068f047
Commit
3068f047
authored
Sep 27, 2015
by
Józef Kucia
Committed by
Alexandre Julliard
Oct 01, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d11: Rename d3d10_rb_{alloc, realloc, free} to d3d_rb_{alloc, realloc, free}.
Signed-off-by:
Józef Kucia
<
jkucia@codeweavers.com
>
parent
84efabb6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
device.c
dlls/d3d11/device.c
+15
-15
No files found.
dlls/d3d11/device.c
View file @
3068f047
...
...
@@ -3038,17 +3038,17 @@ static const struct wined3d_device_parent_ops d3d10_wined3d_device_parent_ops =
device_parent_create_swapchain
,
};
static
void
*
d3d
10
_rb_alloc
(
size_t
size
)
static
void
*
d3d_rb_alloc
(
size_t
size
)
{
return
HeapAlloc
(
GetProcessHeap
(),
0
,
size
);
}
static
void
*
d3d
10
_rb_realloc
(
void
*
ptr
,
size_t
size
)
static
void
*
d3d_rb_realloc
(
void
*
ptr
,
size_t
size
)
{
return
HeapReAlloc
(
GetProcessHeap
(),
0
,
ptr
,
size
);
}
static
void
d3d
10
_rb_free
(
void
*
ptr
)
static
void
d3d_rb_free
(
void
*
ptr
)
{
HeapFree
(
GetProcessHeap
(),
0
,
ptr
);
}
...
...
@@ -3063,9 +3063,9 @@ static int d3d10_sampler_state_compare(const void *key, const struct wine_rb_ent
static
const
struct
wine_rb_functions
d3d10_sampler_state_rb_ops
=
{
d3d
10
_rb_alloc
,
d3d
10
_rb_realloc
,
d3d
10
_rb_free
,
d3d_rb_alloc
,
d3d_rb_realloc
,
d3d_rb_free
,
d3d10_sampler_state_compare
,
};
...
...
@@ -3079,9 +3079,9 @@ static int d3d10_blend_state_compare(const void *key, const struct wine_rb_entry
static
const
struct
wine_rb_functions
d3d10_blend_state_rb_ops
=
{
d3d
10
_rb_alloc
,
d3d
10
_rb_realloc
,
d3d
10
_rb_free
,
d3d_rb_alloc
,
d3d_rb_realloc
,
d3d_rb_free
,
d3d10_blend_state_compare
,
};
...
...
@@ -3096,9 +3096,9 @@ static int d3d10_depthstencil_state_compare(const void *key, const struct wine_r
static
const
struct
wine_rb_functions
d3d10_depthstencil_state_rb_ops
=
{
d3d
10
_rb_alloc
,
d3d
10
_rb_realloc
,
d3d
10
_rb_free
,
d3d_rb_alloc
,
d3d_rb_realloc
,
d3d_rb_free
,
d3d10_depthstencil_state_compare
,
};
...
...
@@ -3112,9 +3112,9 @@ static int d3d_rasterizer_state_compare(const void *key, const struct wine_rb_en
static
const
struct
wine_rb_functions
d3d_rasterizer_state_rb_ops
=
{
d3d
10
_rb_alloc
,
d3d
10
_rb_realloc
,
d3d
10
_rb_free
,
d3d_rb_alloc
,
d3d_rb_realloc
,
d3d_rb_free
,
d3d_rasterizer_state_compare
,
};
...
...
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