This file is indexed.

/usr/lib/perl5/pods/SDLx/SFont.pod is in libsdl-perl 2.540-5.

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
=head1 NAME

SDLx::SFont - Extension making fonts out of images and printing them

=head1 CATEGORY 

Extension

=head1 SYNOPSIS

  use SDLx::SFont;
  use SDLx::App;

   #Make a surface
   #Select a font
   my $d = SDLx::App->new( title => 'app', width => 200, height => 200, depth => 32 );

   my $font = SDLx::SFont->new('t/font.png');
  
   #print using $font
   
   SDLx::SFont::print_text( $d, 10, 10, 'Huh' );

   my $font2 = SDLx::SFont->new('t/font2.png');

   #print using font2

   SDLx::SFont::print_text( $d, 10, 10, 'Huh' );

   $font->use();

   #print using $font
   
   SDLx::SFont::print_text( $d, 10, 10, 'Huh' );

   #that is it folks ..

=head1 DESCRIPTION

a simpler print function for old SDL::SFont dependency on Frozen-Bubble and Pangzero.

=head1 USAGE

see synopsis

=head1 BUGS

You tell me! at sdlperl.ath.cx

=head1 SUPPORT

#sdl irc.perl.org

=head1 AUTHORS

See L<SDL/AUTHORS>.

=head1 COPYRIGHT

This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the
LICENSE file included with this module.


=head1 SEE ALSO

perl(1), SDL(2).

=cut