line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# https://github.com/libsdl-org/SDL/blob/main/include/SDL_video.h |
2
|
|
|
|
|
|
|
package SDL2::DisplayMode { |
3
|
2
|
|
|
2
|
|
11
|
use SDL2::Utils; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
10
|
|
4
|
|
|
|
|
|
|
has |
5
|
|
|
|
|
|
|
format => 'uint32', |
6
|
|
|
|
|
|
|
w => 'int', |
7
|
|
|
|
|
|
|
h => 'int', |
8
|
|
|
|
|
|
|
refresh_rate => 'int', |
9
|
|
|
|
|
|
|
driverdata => 'opaque'; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=encoding utf-8 |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
SDL2::DisplayMode - Structure that Defines a Display Mode |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 SYNOPSIS |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
use SDL2 qw[:all]; |
20
|
|
|
|
|
|
|
SDL_Init(SDL_INIT_VIDEO); |
21
|
|
|
|
|
|
|
my $mode = SDL2::GetDisplayMode( 0, 0 ); |
22
|
|
|
|
|
|
|
printf 'Display res %dx%d @ %dHz', $mode->w, $mode->h, $mode->refresh_rate; |
23
|
|
|
|
|
|
|
SDL_Quit(); |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 DESCRIPTION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
SDL2::DisplayMode |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 Fields |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=over |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=item C - pixel format |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=item C - width, in screen coordinates |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=item C - height, in screen coordinates |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=item C - refresh rate (or C<0> for unspecified) |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=item C - opaque, driver-specific data |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=back |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 AUTHOR |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Sanko Robinson Esanko@cpan.orgE |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=begin stopwords |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=end stopwords |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=cut |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
}; |
58
|
|
|
|
|
|
|
1; |