]> icculus.org git repositories - btb/d2x.git/blob - include/ogl_init.h
function prototypes
[btb/d2x.git] / include / ogl_init.h
1 /* interface to OpenGL functions
2  * Added 9/15/99 Matthew Mueller
3  * Got rid of OpenGL-internal stuff 2004-5-16 Martin Schaffner
4  */
5
6 #ifndef _OGL_INIT_H_ 
7 #define _OGL_INIT_H_
8
9 #ifdef _MSC_VER
10 # undef MAC // dirty feckin hack
11 #include <windows.h>
12 #include <stddef.h>
13 # define MAC(x)
14 #endif
15
16 //#ifdef _WIN32
17 //#define OGL_RUNTIME_LOAD
18 //#endif
19
20 #ifdef OGL_RUNTIME_LOAD
21 #include "loadgl.h"
22 int ogl_init_load_library(void);
23 #else
24 #define GL_GLEXT_LEGACY
25 #undef GL_ARB_multitexture
26 #if defined(__APPLE__) && defined(__MACH__)
27 #include <OpenGL/gl.h>
28 #else
29 #define GL_GLEXT_PROTOTYPES
30 #include <GL/gl.h>
31 #endif
32 #endif
33
34 #ifndef GL_VERSION_1_1
35 #ifdef GL_EXT_texture
36 #define GL_INTENSITY4 GL_INTENSITY4_EXT
37 #define GL_INTENSITY8 GL_INTENSITY8_EXT
38 #endif
39 #endif
40
41 #include "gr.h"
42 #include "palette.h"
43 #include "pstypes.h"
44
45 /* we need to export ogl_texture for 2d/font.c */
46 typedef struct _ogl_texture {
47         GLuint handle;
48         GLint internalformat;
49         GLenum format;
50         int w,h,tw,th,lw;
51         int bytesu;
52         int bytes;
53         GLfloat u,v;
54         GLfloat prio;
55         int wrapstate[2];
56         fix lastrend;
57         unsigned long numrend;
58         char wantmip;
59 } ogl_texture;
60
61 extern ogl_texture* ogl_get_free_texture();
62 void ogl_init_texture(ogl_texture* t, int w, int h, int flags);
63
64 extern int ogl_alttexmerge;//merge textures by just printing the seperate textures?
65 extern int ogl_rgba_internalformat;
66 extern int ogl_rgb_internalformat;
67 extern int ogl_setgammaramp_ok;
68 extern int ogl_intensity4_ok;
69 extern int ogl_luminance4_alpha4_ok;
70 extern int ogl_rgba2_ok;
71 extern int ogl_readpixels_ok;
72 extern int ogl_gettexlevelparam_ok;
73
74 #ifndef EXT_texture_env_combine
75 #define EXT_texture_env_combine 1
76 #define GL_COMBINE_RGB_EXT                0x8571
77 #define GL_COMBINE_ALPHA_EXT              0x8572
78 #define GL_PRIMARY_COLOR_EXT              0x8577
79 #define GL_PREVIOUS_EXT                   0x8578
80 #define GL_SOURCE0_RGB_EXT                0x8580
81 #define GL_SOURCE1_RGB_EXT                0x8581
82 #define GL_SOURCE2_RGB_EXT                0x8582
83 #define GL_SOURCE0_ALPHA_EXT              0x8588
84 #define GL_SOURCE1_ALPHA_EXT              0x8589
85 #define GL_SOURCE2_ALPHA_EXT              0x858A
86 #define GL_OPERAND0_RGB_EXT               0x8590
87 #define GL_OPERAND1_RGB_EXT               0x8591
88 #define GL_OPERAND2_RGB_EXT               0x8592
89 #define GL_OPERAND0_ALPHA_EXT             0x8598
90 #define GL_OPERAND1_ALPHA_EXT             0x8599
91 #define GL_OPERAND2_ALPHA_EXT             0x859A
92 #endif
93
94 #ifndef GL_NV_texture_env_combine4
95 #define GL_NV_texture_env_combine4 1
96 #define GL_COMBINE4_NV                    0x8503
97 #define GL_SOURCE3_RGB_NV                 0x8583
98 #define GL_SOURCE3_ALPHA_NV               0x858B
99 #define GL_OPERAND3_RGB_NV                0x8593
100 #define GL_OPERAND3_ALPHA_NV              0x859B
101 #endif
102 extern int ogl_nv_texture_env_combine4_ok;
103
104 #ifndef GL_EXT_texture_filter_anisotropic
105 #define GL_EXT_texture_filter_anisotropic 1
106 #define GL_TEXTURE_MAX_ANISOTROPY_EXT     0x84FE
107 #define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF
108 #endif
109 extern int ogl_ext_texture_filter_anisotropic_ok;
110
111 #ifndef GL_EXT_shared_texture_palette
112 #define GL_EXT_shared_texture_palette     1
113 #define GL_SHARED_TEXTURE_PALETTE_EXT     0x81FB
114 #endif
115
116 #ifdef GL_EXT_paletted_texture
117 extern int ogl_paletted_texture_ok;
118 extern int ogl_shared_palette_ok;
119 #endif
120 void ogl_init_shared_palette(void);
121
122 extern int gl_initialized;
123 extern int GL_texmagfilt,GL_texminfilt,GL_needmipmaps;
124 extern float GL_texanisofilt;
125 extern int gl_reticle;
126
127 extern int active_texture_unit;
128 void ogl_setActiveTexture(int t);
129
130 int ogl_check_mode(int x, int y); // check if mode is valid
131 int ogl_init_window(int x, int y);//create a window/switch modes/etc
132 void ogl_destroy_window(void);//destroy window/etc
133 void ogl_init(void);//one time initialization
134 void ogl_close(void);//one time shutdown
135
136
137 #define OGL_FLAG_MIPMAP (1 << 0)
138 #define OGL_FLAG_NOCOLOR (1 << 1)
139 #define OGL_FLAG_ALPHA (1 << 31) // not required for ogl_loadbmtexture, since it uses the BM_FLAG_TRANSPARENT, but is needed for ogl_init_texture.
140 void ogl_loadbmtexture_f(grs_bitmap *bm, int flags);
141 void ogl_freebmtexture(grs_bitmap *bm);
142
143 void ogl_start_offscreen_render(int x, int y, int w, int h);
144 void ogl_end_offscreen_render(void);
145 void ogl_start_frame(void);
146 void ogl_end_frame(void);
147 void ogl_swap_buffers(void);
148 void ogl_set_screen_mode(void);
149 void ogl_cache_level_textures(void);
150
151 void ogl_urect(int left, int top, int right, int bot);
152 bool ogl_ubitmapm_c(int x, int y, grs_bitmap *bm, int c);
153 bool ogl_ubitmapm(int x, int y, grs_bitmap *bm);
154 bool ogl_ubitblt_i(int dw, int dh, int dx, int dy, int sw, int sh, int sx, int sy, grs_bitmap * src, grs_bitmap * dest);
155 bool ogl_ubitblt(int w, int h, int dx, int dy, int sx, int sy, grs_bitmap * src, grs_bitmap * dest);
156 bool ogl_ubitblt_tolinear(int w, int h, int dx, int dy, int sx, int sy, grs_bitmap * src, grs_bitmap * dest);
157 bool ogl_ubitblt_copy(int w, int h, int dx, int dy, int sx, int sy, grs_bitmap * src, grs_bitmap * dest);
158 void ogl_upixelc(int x, int y, int c);
159 void ogl_ulinec(int left, int top, int right, int bot, int c);
160
161 #include "3d.h"
162 bool g3_draw_tmap_2(int nv,g3s_point **pointlist,g3s_uvl *uvl_list,grs_bitmap *bmbot,grs_bitmap *bm, int orient);
163
164 void ogl_draw_reticle(int cross, int primary, int secondary);
165
166 #endif /* _OGL_INIT_H_ */