This repository was archived by the owner on Mar 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +39
-60
lines changed Expand file tree Collapse file tree 4 files changed +39
-60
lines changed Original file line number Diff line number Diff line change 1
1
Revision history for Perl extension OpenGL::Array.
2
2
3
- 0.01 Tue Feb 28 16:23:40 2017
4
- - original version; created by h2xs 1.23 with options
5
- -O -b 5.8.0 -A -n OpenGL::Array
6
-
3
+ 0.70_01 Thu Mar 2 10:13:19 EST 2017
4
+ - first stand alone version of OpenGL::Array
5
+ - framework initialize with h2xs
6
+ - code from Perl OpenGL 0.70
Original file line number Diff line number Diff line change 1
- OpenGL-Array version 0.01
2
- =========================
1
+ OpenGL-Array version 0.70_01
2
+ ============================
3
3
4
4
This is a stand-alone distribution of OpenGL::Array
5
5
(which includes OpenGL::Matrix). All of these were
@@ -27,7 +27,9 @@ DEPENDENCIES
27
27
28
28
This module requires these other modules and libraries:
29
29
30
- TODO
30
+ Devel::CheckOS => 0
31
+ ExtUtils::MakeMaker => 6.52
32
+ Test::More => 0
31
33
32
34
COPYRIGHT AND LICENCE
33
35
Original file line number Diff line number Diff line change @@ -26,10 +26,8 @@ our @EXPORT = qw(
26
26
27
27
) ;
28
28
29
- our $VERSION = ' 0.01 ' ;
29
+ our $VERSION = ' 0.70_01 ' ;
30
30
31
- # require XSLoader;
32
- # XSLoader::load('OpenGL::Array', $VERSION);
33
31
34
32
bootstrap OpenGL::Array;
35
33
@@ -40,53 +38,3 @@ bootstrap OpenGL::Array;
40
38
41
39
1;
42
40
__END__
43
- # Below is stub documentation for your module. You'd better edit it!
44
-
45
- =head1 NAME
46
-
47
- OpenGL::Array - Perl extension for blah blah blah
48
-
49
- =head1 SYNOPSIS
50
-
51
- use OpenGL::Array;
52
- blah blah blah
53
-
54
- =head1 DESCRIPTION
55
-
56
- Stub documentation for OpenGL::Array, created by h2xs. It looks like the
57
- author of the extension was negligent enough to leave the stub
58
- unedited.
59
-
60
- Blah blah blah.
61
-
62
- =head2 EXPORT
63
-
64
- None by default.
65
-
66
-
67
-
68
- =head1 SEE ALSO
69
-
70
- Mention other useful documentation such as the documentation of
71
- related modules or operating system documentation (such as man pages
72
- in UNIX), or any relevant external documentation such as RFCs or
73
- standards.
74
-
75
- If you have a mailing list set up for your module, mention it here.
76
-
77
- If you have a web site set up for your module, mention it here.
78
-
79
- =head1 AUTHOR
80
-
81
- U-NAE\chris.h.marshall, E<lt> chris.h.marshall@nonetE<gt>
82
-
83
- =head1 COPYRIGHT AND LICENSE
84
-
85
- Copyright (C) 2017 by U-NAE\chris.h.marshall
86
-
87
- This library is free software; you can redistribute it and/or modify
88
- it under the same terms as Perl itself, either Perl version 5.22.2 or,
89
- at your option, any later version of Perl 5 you may have available.
90
-
91
-
92
- =cut
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (C) 2003-2005 by the gtk2-perl team (see the file AUTHORS for
3
+ * the full list)
4
+ *
5
+ * This library is free software; you can redistribute it and/or modify it
6
+ * under the terms of the GNU Library General Public License as published by
7
+ * the Free Software Foundation; either version 2.1 of the License, or (at your
8
+ * option) any later version.
9
+ *
10
+ * This library is distributed in the hope that it will be useful, but WITHOUT
11
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13
+ * License for more details.
14
+ *
15
+ * You should have received a copy of the GNU Library General Public License
16
+ * along with this library; if not, write to the Free Software Foundation,
17
+ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA.
18
+ *
19
+ * $Id: Glib.xs 1077 2009-02-05 14:39:12Z tsch $
20
+ */
21
+
22
+ void
23
+ _pgopogl_call_XS (pTHX_ void (* subaddr ) (pTHX_ CV * ), CV * cv , SV * * mark )
24
+ {
25
+ dSP ;
26
+ PUSHMARK (mark );
27
+ (* subaddr ) (aTHX_ cv );
28
+ PUTBACK ; /* forget return values */
29
+ }
You can’t perform that action at this time.
0 commit comments