This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.26/pods/SDL/GFX/FPSManager.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
=head1 NAME

SDL::GFX::FPSManager - data structure used by SDL::GFX::Framerate

=head1 CATEGORY

GFX, Structure

=head1 METHODS

=head2 new

 use SDL;
 use SDL::GFX::Framerate;
 use SDL::GFX::FPSManager;

 my $fps = SDL::GFX::FPSManager->new(0, 0, 0, 0);

Initialize the framerate manager object. Arguments: framecount, rateticks, lastticks, rate.

=head2 framecount

 my $fc = $fps->framecount;

Returns the C<framecount>.

=head2 rateticks

 my $rt = $fps->rateticks;

Returns the C<rateticks>.

=head2 lastticks

 my $lt = $fps->lastticks;

Returns the C<lastticks>.

=head2 rate

 my $r = $fps->rate;

Returns the C<rate>.

=head1 AUTHORS

See L<SDL/AUTHORS>.