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
9c480555
Commit
9c480555
authored
Apr 27, 2015
by
Steve Lhomme
Committed by
Jean-Baptiste Kempf
Apr 28, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
direct3d11: favor BGRA over RGB32 for better blending
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
810104ca
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/video_output/msw/direct3d11.c
modules/video_output/msw/direct3d11.c
+1
-1
No files found.
modules/video_output/msw/direct3d11.c
View file @
9c480555
...
...
@@ -87,8 +87,8 @@ static const d3d_format_t d3d_formats[] = {
{
"Y410"
,
DXGI_FORMAT_Y410
,
VLC_CODEC_I444_10L
,
DXGI_FORMAT_R10G10B10A2_UNORM
,
0
},
{
"NV11"
,
DXGI_FORMAT_NV11
,
VLC_CODEC_I411
,
DXGI_FORMAT_R8_UNORM
,
DXGI_FORMAT_R8G8_UNORM
},
#endif
{
"R8G8B8X8"
,
DXGI_FORMAT_B8G8R8X8_UNORM
,
VLC_CODEC_RGB32
,
DXGI_FORMAT_B8G8R8X8_UNORM
,
0
},
{
"B8G8R8A8"
,
DXGI_FORMAT_B8G8R8A8_UNORM
,
VLC_CODEC_BGRA
,
DXGI_FORMAT_B8G8R8A8_UNORM
,
0
},
{
"R8G8B8X8"
,
DXGI_FORMAT_B8G8R8X8_UNORM
,
VLC_CODEC_RGB32
,
DXGI_FORMAT_B8G8R8X8_UNORM
,
0
},
{
"B5G6R5"
,
DXGI_FORMAT_B5G6R5_UNORM
,
VLC_CODEC_RGB16
,
DXGI_FORMAT_B5G6R5_UNORM
,
0
},
{
NULL
,
0
,
0
,
0
,
0
}
...
...
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