File: GtkGLArea.pm

package info (click to toggle)
libgtk-perl 0.7009-12
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,956 kB
  • ctags: 2,260
  • sloc: perl: 13,998; xml: 9,919; ansic: 2,894; makefile: 64; cpp: 45
file content (35 lines) | stat: -rw-r--r-- 693 bytes parent folder | download | duplicates (2)
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


package Gtk::GLArea;

require Gtk;
require Exporter;
require DynaLoader;

$VERSION = '0.7009';

@ISA = qw(Exporter DynaLoader);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
@EXPORT = qw(
        
);
# Other items we are prepared to export if requested
@EXPORT_OK = qw(
);

bootstrap Gtk::GLArea $VERSION;

sub dl_load_flags {Gtk::dl_load_flags()}

require Gtk::GLArea::Types;

# Autoload methods go after __END__, and are processed by the autosplit program.

Gtk->mod_init_add('Gtk', sub {
	init Gtk::GLArea;
});

1;
__END__