/usr/lib/perl5/pods/SDL/Overlay.pod is in libsdl-perl 2.540-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | =pod
=head1 NAME
SDL::Overlay - YUV Video overlay
=head2 CATEGORY
Core, Video, Structure
=head1 SYNOPSIS
First import the following modules to get access to constants and functions needed for overlay.
use SDL;
use SDL::Video;
use SDL::Overlay;
Init the video subsystem.
SDL::Init(SDL_INIT_VIDEO);
Create a display to use.
my $display = SDL::Video::set_video_mode(640, 480, 32, SDL_SWSURFACE);
Create and attach the display to a new overlay
my $overlay = SDL::Overlay->new( 100, 100, SDL_YV12_OVERLAY, $display);
=head1 DESCRIPTION
A C<SDL_Overlay> allows for video rendering on an C<SDL_Surface> which is a display.
The term 'overlay' is a misnomer since, unless the overlay is created in hardware, the contents for the display surface underneath the area where the overlay is shown will be overwritten when the overlay is displayed.
=head1 METHODS
=head2 new ( $width, $height, $YUV_flag, $display)
The constructor creates a SDL::Overlay of the specified width, height and format (see C<YUV_Flags> list below of available formats), for the provided display.
Note the 'display' argument needs to actually be the surface created by C<SDL::Video::SetVideoMode> otherwise this function will segfault.
my $overlay = SDL::Overlay->new( $width, $height, $YUV_flag, $display );
=head3 YUV_Flags
More information on YUV formats can be found at L<http://www.fourcc.org/indexyuv.htm> .
=over 4
=item *
SDL_YV12_OVERLAY 0x32315659 /* Planar mode: Y + V + U */
=item *
SDL_IYUV_OVERLAY 0x56555949 /* Planar mode: Y + U + V */
=item *
SDL_YUY2_OVERLAY 0x32595559 /* Packed mode: Y0+U0+Y1+V0 */
=item *
SDL_UYVY_OVERLAY 0x59565955 /* Packed mode: U0+Y0+V0+Y1 */
=item *
SDL_YVYU_OVERLAY 0x55595659 /* Packed mode: Y0+V0+Y1+U0 */
=back
=head2 format
Overlay format (see YUV_Flags)
=head2 w, h
Width and height of overlay
=head2 planes
Number of planes in the overlay. Usually either 1 or 3
=head2 pitches
An array of pitches, one for each plane. Pitch is the length of a row in bytes.
=head2 pixels
As of release 2.3 direct right to overlay is disable.
An array of pointers to the data of each plane. The overlay should be locked before these pointers are used.
see L<SDL::Video::lock_YUV_overlay>, L<SDL::Video::unload_YUV_overlay>
=head2 hw_overlay
This will be set to 1 if the overlay is hardware accelerated.
=head1 AUTHORS
See L<SDL/AUTHORS>.
=cut
|