This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.26/pods/SDL/Color.pod is in libsdl-perl 2.546-3build1.

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
=pod

=head1 NAME

SDL::Color - Format independent color description

=head2 CATEGORY

Core, Video, Structure

=head1 SYNOPSIS

 my $black = SDL::Color->new(0, 0, 0);
 my $color = SDL::Color->new(255, 0, 0);
 my $r = $color->r; # 255
 my $g = $color->g; # 0
 my $b = $color->b; # 0
 $color->g(255);
 $color->b(255);
 # $color is now white

=head1 DESCRIPTION

C<SDL_Color> describes a color in a format independent way.

=head1 METHODS

=head2 new

 my $color = SDL::Color->new(255, 0, 0);

The constructor creates a new color with the specified red, green and blue values.

=head2 r

 my $r = $color->r;
 $color->r(128);

If passed a value, this method sets the red component of the color;
if not, it returns the red component of the color.

=head2 g

 my $g = $color->g;
 $color->g(128);

If passed a value, this method sets the green component of the color;
if not, it returns the green component of the color.

=head2 b

 my $b = $color->b;
 $color->b(128);

If passed a value, this method sets the blue component of the color;
if not, it returns the blue component of the color.

=head1 SEE ALSO

L<SDL::Surface>

=head1 AUTHORS

See L<SDL/AUTHORS>.


=cut