Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
465
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
72fb0cfe
Commit
72fb0cfe
authored
2 years ago
by
Steve Lhomme
Browse files
Options
Downloads
Patches
Plain Diff
meson: add d3d11 video output
parent
06d5eb50
No related branches found
Branches containing commit
No related tags found
Tags containing commit
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/video_output/meson.build
+4
-0
4 additions, 0 deletions
modules/video_output/meson.build
modules/video_output/win32/meson.build
+22
-0
22 additions, 0 deletions
modules/video_output/win32/meson.build
with
26 additions
and
0 deletions
modules/video_output/meson.build
+
4
−
0
View file @
72fb0cfe
...
...
@@ -20,6 +20,10 @@ if libplacebo_dep.found()
subdir
(
'libplacebo'
)
endif
if
host_system
==
'windows'
subdir
(
'win32'
)
endif
# Dummy video output
vlc_modules
+=
{
'name'
:
'vdummy'
,
...
...
This diff is collapsed.
Click to expand it.
modules/video_output/win32/meson.build
0 → 100644
+
22
−
0
View file @
72fb0cfe
#
# Win32 Video output modules
#
# Direct3D11 video output
d3d11_sources
=
files
(
'direct3d11.cpp'
,
'd3d11_quad.cpp'
,
'd3d11_shaders.cpp'
,
'd3d_shaders.c'
,
'd3d_dynamic_shader.c'
,
'd3d11_swapchain.cpp'
,
'dxgi_swapchain.cpp'
,
'common.c'
)
d3d11_link_with
=
[
d3d11_common_lib
]
if
get_option
(
'winstore_app'
)
d3d11_link_with
+=
[
cc
.
find_library
(
'd3d11'
),
cc
.
find_library
(
'd3dcompiler_47'
)
]
else
d3d11_sources
+=
files
(
'events.c'
,
'sensors.cpp'
,
'win32touch.c'
)
d3d11_link_with
+=
[
chroma_copy_lib
]
endif
vlc_modules
+=
{
'name'
:
'direct3d11'
,
'sources'
:
d3d11_sources
,
'link_with'
:
d3d11_link_with
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment