Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
7b835cf4
Commit
7b835cf4
authored
Jun 17, 2015
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
D3D11: fix compilation in DEBUG mode
parent
0ecda63f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/codec/avcodec/d3d11va.c
modules/codec/avcodec/d3d11va.c
+2
-2
No files found.
modules/codec/avcodec/d3d11va.c
View file @
7b835cf4
...
@@ -424,8 +424,8 @@ static int D3dCreateDevice(vlc_va_t *va)
...
@@ -424,8 +424,8 @@ static int D3dCreateDevice(vlc_va_t *va)
#if defined(NDEBUG) && defined(HAVE_DXGIDEBUG_H)
#if defined(NDEBUG) && defined(HAVE_DXGIDEBUG_H)
HRESULT
(
WINAPI
*
pf_DXGIGetDebugInterface
)(
const
GUID
*
riid
,
void
**
ppDebug
);
HRESULT
(
WINAPI
*
pf_DXGIGetDebugInterface
)(
const
GUID
*
riid
,
void
**
ppDebug
);
if
(
sys
->
dxgidebug_dll
)
{
if
(
va
->
sys
->
dxgidebug_dll
)
{
pf_DXGIGetDebugInterface
=
(
void
*
)
GetProcAddress
(
sys
->
dxgidebug_dll
,
"DXGIGetDebugInterface"
);
pf_DXGIGetDebugInterface
=
(
void
*
)
GetProcAddress
(
va
->
sys
->
dxgidebug_dll
,
"DXGIGetDebugInterface"
);
if
(
pf_DXGIGetDebugInterface
)
{
if
(
pf_DXGIGetDebugInterface
)
{
IDXGIDebug
*
pDXGIDebug
=
NULL
;
IDXGIDebug
*
pDXGIDebug
=
NULL
;
hr
=
pf_DXGIGetDebugInterface
(
&
IID_IDXGIDebug
,
(
void
**
)
&
pDXGIDebug
);
hr
=
pf_DXGIGetDebugInterface
(
&
IID_IDXGIDebug
,
(
void
**
)
&
pDXGIDebug
);
...
...
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