ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/OpenGL.pm
Revision: 1.16
Committed: Thu Nov 26 07:19:12 2009 UTC (14 years, 5 months ago) by root
Branch: MAIN
Changes since 1.15: +4 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.14 package DC::OpenGL;
2 root 1.1
3     use strict;
4    
5 root 1.2 use Carp ();
6 root 1.14 use DC;
7 root 1.2
8     our %GL_EXT;
9     our $GL_VERSION;
10    
11     our $GL_NPOT;
12 root 1.9 our $GL_COMPRESS;
13 root 1.10 our $GL_BFSEP; # blendfuncseparate
14 root 1.16 our $APPLE_NVIDIA_BUG;
15 root 1.2
16     our $DEBUG = 1;
17     our %INIT_HOOK;
18 root 1.3 our %SHUTDOWN_HOOK;
19 root 1.1
20     sub import {
21     my $caller = caller;
22    
23     no strict;
24    
25 root 1.14 my $symtab = *{"main::DC::OpenGL::"}{HASH};
26 root 1.1
27     for (keys %$symtab) {
28 root 1.2 *{"$caller\::$_"} = *$_
29     if /^(?:gl[A-Z_]|GL_)/;
30 root 1.1 }
31     }
32    
33 root 1.2 sub init {
34 root 1.10 $GL_VERSION = gl_version * 1;
35     %GL_EXT = map +($_ => 1), split /\s+/, gl_extensions;
36    
37     unless (defined $::CFG->{force_opengl11}) {
38     # try to find a suitable default
39     if (
40     $GL_VERSION >= 2.0
41     && (!$GL_EXT{GL_ARB_texture_non_power_of_two}
42     || !$GL_EXT{GL_EXT_blend_func_separate})
43     ) {
44     $::CFG->{force_opengl11} = 1;
45     } else {
46     $::CFG->{force_opengl11} = 0;
47     }
48     }
49    
50 root 1.9 if ($::CFG->{force_opengl11}) {
51 root 1.8 $GL_VERSION = 1.1;
52     %GL_EXT = ();
53     }
54 root 1.2
55 root 1.10 $GL_BFSEP = $GL_EXT{GL_EXT_blend_func_separate} || $GL_VERSION >= 2.0;
56 root 1.9 $GL_NPOT = $GL_EXT{GL_ARB_texture_non_power_of_two} || $GL_VERSION >= 2.0;
57     $GL_COMPRESS = $GL_EXT{GL_ARB_texture_compression} || $GL_VERSION >= 1.3;
58 root 1.2
59 root 1.15 $GL_COMPRESS = 0 if DC::OpenGL::gl_vendor eq "Apple Computer, Inc."; # there is no end to their suckage
60    
61 root 1.16 $APPLE_NVIDIA_BUG = DC::OpenGL::gl_vendor eq "NVIDIA Corporation" && $^O eq "darwin";
62     apple_nvidia_bug $APPLE_NVIDIA_BUG;
63    
64 root 1.10 disable_GL_EXT_blend_func_separate
65     unless $GL_BFSEP;
66    
67 root 1.2 glDisable GL_COLOR_MATERIAL;
68     glShadeModel GL_FLAT;
69     glDisable GL_DITHER;
70     glDisable GL_DEPTH_TEST;
71     glDepthMask 0;
72 root 1.5
73     my $hint = $::FAST ? GL_FASTEST : GL_NICEST;
74     glHint GL_PERSPECTIVE_CORRECTION_HINT, $hint;
75 root 1.6 glHint GL_POINT_SMOOTH_HINT , $hint;
76 root 1.5 glHint GL_LINE_SMOOTH_HINT , $hint;
77     glHint GL_POLYGON_SMOOTH_HINT , $hint;
78     glHint GL_GENERATE_MIPMAP_HINT , $hint;
79 root 1.11 glHint GL_TEXTURE_COMPRESSION_HINT , $hint;
80 root 1.5 #glDrawBuffer GL_BACK;
81     #glReadBuffer GL_BACK;
82 root 1.2
83     $_->() for values %INIT_HOOK;
84     }
85    
86 root 1.12 sub quit {
87     undef $GL_VERSION;
88     undef %GL_EXT;
89     }
90    
91 root 1.3 sub shutdown {
92     $_->() for values %SHUTDOWN_HOOK;
93 root 1.12
94     quit;
95 root 1.3 }
96    
97 root 1.2 sub gl_check {
98     return unless $DEBUG;
99    
100     if (my $error = glGetError) {
101     my ($format, @args) = @_;
102     Carp::cluck sprintf "opengl error %x while $format", $error, @args;
103     }
104     }
105    
106     1;
107