Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
1772a146
Commit
1772a146
authored
Jan 05, 2012
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed rendering of subpictures with non 0 offset in direct3d.
It is needed for DVD menu support.
parent
446263ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
modules/video_output/msw/direct3d.c
modules/video_output/msw/direct3d.c
+6
-4
No files found.
modules/video_output/msw/direct3d.c
View file @
1772a146
...
...
@@ -1254,10 +1254,12 @@ static void Direct3DImportSubpicture(vout_display_t *vd,
D3DLOCKED_RECT
lock
;
hr
=
IDirect3DTexture9_LockRect
(
d3dr
->
texture
,
0
,
&
lock
,
NULL
,
0
);
if
(
SUCCEEDED
(
hr
))
{
uint8_t
*
dst_data
=
lock
.
pBits
;
int
dst_pitch
=
lock
.
Pitch
;
uint8_t
*
src_data
=
r
->
p_picture
->
p
->
p_pixels
;
int
src_pitch
=
r
->
p_picture
->
p
->
i_pitch
;
uint8_t
*
dst_data
=
lock
.
pBits
;
int
dst_pitch
=
lock
.
Pitch
;
const
int
src_offset
=
r
->
fmt
.
i_y_offset
*
r
->
p_picture
->
p
->
i_pitch
+
r
->
fmt
.
i_x_offset
*
r
->
p_picture
->
p
->
i_pixel_pitch
;
uint8_t
*
src_data
=
&
r
->
p_picture
->
p
->
p_pixels
[
src_offset
];
int
src_pitch
=
r
->
p_picture
->
p
->
i_pitch
;
for
(
unsigned
y
=
0
;
y
<
r
->
fmt
.
i_visible_height
;
y
++
)
{
int
copy_pitch
=
__MIN
(
dst_pitch
,
r
->
p_picture
->
p
->
i_visible_pitch
);
if
(
d3dr
->
format
==
D3DFMT_A8B8G8R8
)
{
...
...
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