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
0381b5dc
Commit
0381b5dc
authored
Jan 04, 2015
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32: rename directx to directdraw
parent
0c34f85e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
modules/video_output/Makefile.am
modules/video_output/Makefile.am
+1
-1
modules/video_output/msw/common.c
modules/video_output/msw/common.c
+1
-1
modules/video_output/msw/directdraw.c
modules/video_output/msw/directdraw.c
+3
-3
modules/video_output/msw/events.h
modules/video_output/msw/events.h
+1
-1
po/POTFILES.in
po/POTFILES.in
+1
-1
No files found.
modules/video_output/Makefile.am
View file @
0381b5dc
...
...
@@ -181,7 +181,7 @@ libdirect3d9_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(voutdir)'
vout_LTLIBRARIES
+=
$(LTLIBdirect3d9)
EXTRA_LTLIBRARIES
+=
libdirect3d9_plugin.la
libdirectdraw_plugin_la_SOURCES
=
video_output/msw/direct
x
.c
\
libdirectdraw_plugin_la_SOURCES
=
video_output/msw/direct
draw
.c
\
video_output/msw/common.c video_output/msw/common.h
\
video_output/msw/events.c video_output/msw/events.h
\
video_output/msw/win32touch.c video_output/msw/win32touch.h
...
...
modules/video_output/msw/common.c
View file @
0381b5dc
...
...
@@ -147,7 +147,7 @@ void CommonManage(vout_display_t *vd)
* an issue. The surface automatically gets moved together
* with the associated window (hvideownd)
*
* For direct
x
, it is still important to call UpdateRects
* For direct
draw
, it is still important to call UpdateRects
* on a move of the parent window, even if no resize occurred
*/
SetWindowPos
(
sys
->
hwnd
,
0
,
0
,
0
,
...
...
modules/video_output/msw/direct
x
.c
→
modules/video_output/msw/direct
draw
.c
View file @
0381b5dc
/*****************************************************************************
* direct
x
.c: Windows DirectDraw video output
* direct
draw
.c: Windows DirectDraw video output
*****************************************************************************
* Copyright (C) 2001-2009 VLC authors and VideoLAN
* $Id$
...
...
@@ -94,7 +94,7 @@ static void Close(vlc_object_t *);
static
int
FindDevicesCallback
(
vlc_object_t
*
,
const
char
*
,
char
***
,
char
***
);
vlc_module_begin
()
set_shortname
(
"Direct
X
"
)
set_shortname
(
"Direct
Draw
"
)
set_description
(
N_
(
"DirectX (DirectDraw) video output"
))
set_help
(
DX_HELP
)
set_category
(
CAT_VIDEO
)
...
...
@@ -109,7 +109,7 @@ vlc_module_begin()
change_string_cb
(
FindDevicesCallback
)
set_capability
(
"vout display"
,
230
)
add_shortcut
(
"directx"
)
add_shortcut
(
"directx"
,
"directdraw"
)
set_callbacks
(
Open
,
Close
)
vlc_module_end
()
...
...
modules/video_output/msw/events.h
View file @
0381b5dc
...
...
@@ -31,7 +31,7 @@ typedef struct event_thread_t event_thread_t;
typedef
struct
{
bool
use_desktop
;
/* direct3d */
bool
use_overlay
;
/* direct
x
*/
bool
use_overlay
;
/* direct
draw
*/
int
x
;
int
y
;
unsigned
width
;
...
...
po/POTFILES.in
View file @
0381b5dc
...
...
@@ -1172,7 +1172,7 @@ modules/video_output/kva.c
modules/video_output/macosx.m
modules/video_output/msw/direct2d.c
modules/video_output/msw/direct3d9.c
modules/video_output/msw/direct
x
.c
modules/video_output/msw/direct
draw
.c
modules/video_output/msw/events.c
modules/video_output/msw/glwin32.c
modules/video_output/msw/wingdi.c
...
...
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