ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/OpenGL.pm
Revision: 1.15
Committed: Sat Aug 30 04:43:02 2008 UTC (15 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-2_03, rel-2_02, rel-2_05, rel-2_04, rel-2_0, rel-0_9976, rel-0_9977, rel-0_9978
Changes since 1.14: +2 -0 lines
Log Message:
disable compression with apple's sofwtare renderer

File Contents

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