Mercurial > mplayer.hg
annotate libvo/gl_common.h @ 29924:747433f6dc07
map 0x20736D to ffac3, fixes broken mov sample
author | compn |
---|---|
date | Thu, 26 Nov 2009 18:00:45 +0000 |
parents | 0f1b5b68af32 |
children | eb6c70e2cbea |
rev | line source |
---|---|
28446
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
1 /* |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
2 * This file is part of MPlayer. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
3 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
7 * (at your option) any later version. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
8 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
12 * GNU General Public License for more details. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
13 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
17 */ |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28070
diff
changeset
|
18 |
26029 | 19 #ifndef MPLAYER_GL_COMMON_H |
20 #define MPLAYER_GL_COMMON_H | |
13653
799f81d3cb19
added gl_common for code used by both vo_gl.c and vo_gl2.c.
reimar
parents:
diff
changeset
|
21 |
26162
0585db9f5b32
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
22 #include <stdio.h> |
26163
f3e72d1a2329
This header uses parts of stdint.h, so #include it.
diego
parents:
26162
diff
changeset
|
23 #include <stdint.h> |
26162
0585db9f5b32
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
24 |
26203 | 25 #include "config.h" |
13843 | 26 #include "mp_msg.h" |
27 | |
28 #include "video_out.h" | |
29 | |
14142
f0c1ee83b216
Improving gl2 under windows, moving some functionality to gl_common
reimar
parents:
14078
diff
changeset
|
30 #ifdef GL_WIN32 |
f0c1ee83b216
Improving gl2 under windows, moving some functionality to gl_common
reimar
parents:
14078
diff
changeset
|
31 #include <windows.h> |
27845
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
32 #include <GL/gl.h> |
14142
f0c1ee83b216
Improving gl2 under windows, moving some functionality to gl_common
reimar
parents:
14078
diff
changeset
|
33 #include "w32_common.h" |
f0c1ee83b216
Improving gl2 under windows, moving some functionality to gl_common
reimar
parents:
14078
diff
changeset
|
34 #else |
27845
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
35 #include <GL/gl.h> |
13843 | 36 #include <X11/Xlib.h> |
37 #include <GL/glx.h> | |
38 #include "x11_common.h" | |
39 #endif | |
13653
799f81d3cb19
added gl_common for code used by both vo_gl.c and vo_gl2.c.
reimar
parents:
diff
changeset
|
40 |
17668
b822575a1140
workaround for gl.h variants that do not define APIENTRY
reimar
parents:
17566
diff
changeset
|
41 // workaround for some gl.h headers |
b822575a1140
workaround for gl.h variants that do not define APIENTRY
reimar
parents:
17566
diff
changeset
|
42 #ifndef APIENTRY |
b822575a1140
workaround for gl.h variants that do not define APIENTRY
reimar
parents:
17566
diff
changeset
|
43 #ifdef GLAPIENTRY |
b822575a1140
workaround for gl.h variants that do not define APIENTRY
reimar
parents:
17566
diff
changeset
|
44 #define APIENTRY GLAPIENTRY |
17688
e8dca2bbd796
Better fallback for APIENTRY when compiling for Windows
reimar
parents:
17668
diff
changeset
|
45 #elif defined(GL_WIN32) |
e8dca2bbd796
Better fallback for APIENTRY when compiling for Windows
reimar
parents:
17668
diff
changeset
|
46 #define APIENTRY __stdcall |
17668
b822575a1140
workaround for gl.h variants that do not define APIENTRY
reimar
parents:
17566
diff
changeset
|
47 #else |
b822575a1140
workaround for gl.h variants that do not define APIENTRY
reimar
parents:
17566
diff
changeset
|
48 #define APIENTRY |
b822575a1140
workaround for gl.h variants that do not define APIENTRY
reimar
parents:
17566
diff
changeset
|
49 #endif |
b822575a1140
workaround for gl.h variants that do not define APIENTRY
reimar
parents:
17566
diff
changeset
|
50 #endif |
b822575a1140
workaround for gl.h variants that do not define APIENTRY
reimar
parents:
17566
diff
changeset
|
51 |
16595
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
52 /** |
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
53 * \defgroup glextdefines OpenGL extension defines |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28446
diff
changeset
|
54 * |
16595
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
55 * conditionally define all extension defines used. |
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
56 * vendor specific extensions should be marked as such |
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
57 * (e.g. _NV), _ARB is not used to ease readability. |
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
58 * \{ |
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
59 */ |
27845
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
60 #ifndef GL_TEXTURE_3D |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
61 #define GL_TEXTURE_3D 0x806F |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
62 #endif |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
63 #ifndef GL_TEXTURE_WRAP_R |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
64 #define GL_TEXTURE_WRAP_R 0x8072 |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
65 #endif |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
66 #ifndef GL_CLAMP_TO_EDGE |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
67 #define GL_CLAMP_TO_EDGE 0x812F |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
68 #endif |
16608 | 69 #ifndef GL_REGISTER_COMBINERS_NV |
70 #define GL_REGISTER_COMBINERS_NV 0x8522 | |
71 #endif | |
16488
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
72 #ifndef GL_MAX_GENERAL_COMBINERS_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
73 #define GL_MAX_GENERAL_COMBINERS_NV 0x854D |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
74 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
75 #ifndef GL_NUM_GENERAL_COMBINERS_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
76 #define GL_NUM_GENERAL_COMBINERS_NV 0x854E |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
77 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
78 #ifndef GL_CONSTANT_COLOR0_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
79 #define GL_CONSTANT_COLOR0_NV 0x852A |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
80 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
81 #ifndef GL_CONSTANT_COLOR1_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
82 #define GL_CONSTANT_COLOR1_NV 0x852B |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
83 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
84 #ifndef GL_COMBINER0_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
85 #define GL_COMBINER0_NV 0x8550 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
86 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
87 #ifndef GL_COMBINER1_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
88 #define GL_COMBINER1_NV 0x8551 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
89 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
90 #ifndef GL_VARIABLE_A_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
91 #define GL_VARIABLE_A_NV 0x8523 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
92 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
93 #ifndef GL_VARIABLE_B_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
94 #define GL_VARIABLE_B_NV 0x8524 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
95 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
96 #ifndef GL_VARIABLE_C_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
97 #define GL_VARIABLE_C_NV 0x8525 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
98 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
99 #ifndef GL_VARIABLE_D_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
100 #define GL_VARIABLE_D_NV 0x8526 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
101 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
102 #ifndef GL_UNSIGNED_INVERT_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
103 #define GL_UNSIGNED_INVERT_NV 0x8537 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
104 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
105 #ifndef GL_HALF_BIAS_NORMAL_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
106 #define GL_HALF_BIAS_NORMAL_NV 0x853A |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
107 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
108 #ifndef GL_SIGNED_IDENTITY_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
109 #define GL_SIGNED_IDENTITY_NV 0x853C |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
110 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
111 #ifndef GL_SCALE_BY_FOUR_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
112 #define GL_SCALE_BY_FOUR_NV 0x853F |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
113 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
114 #ifndef GL_DISCARD_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
115 #define GL_DISCARD_NV 0x8530 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
116 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
117 #ifndef GL_SPARE0_NV |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
118 #define GL_SPARE0_NV 0x852E |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
119 #endif |
16625 | 120 #ifndef GL_FRAGMENT_SHADER_ATI |
121 #define GL_FRAGMENT_SHADER_ATI 0x8920 | |
122 #endif | |
123 #ifndef GL_NUM_FRAGMENT_REGISTERS_ATI | |
124 #define GL_NUM_FRAGMENT_REGISTERS_ATI 0x896E | |
125 #endif | |
126 #ifndef GL_REG_0_ATI | |
127 #define GL_REG_0_ATI 0x8921 | |
128 #endif | |
129 #ifndef GL_REG_1_ATI | |
130 #define GL_REG_1_ATI 0x8922 | |
131 #endif | |
132 #ifndef GL_REG_2_ATI | |
133 #define GL_REG_2_ATI 0x8923 | |
134 #endif | |
135 #ifndef GL_CON_0_ATI | |
136 #define GL_CON_0_ATI 0x8941 | |
137 #endif | |
138 #ifndef GL_CON_1_ATI | |
139 #define GL_CON_1_ATI 0x8942 | |
140 #endif | |
141 #ifndef GL_ADD_ATI | |
142 #define GL_ADD_ATI 0x8963 | |
143 #endif | |
144 #ifndef GL_MUL_ATI | |
145 #define GL_MUL_ATI 0x8964 | |
146 #endif | |
147 #ifndef GL_MAD_ATI | |
148 #define GL_MAD_ATI 0x8968 | |
149 #endif | |
150 #ifndef GL_SWIZZLE_STR_ATI | |
151 #define GL_SWIZZLE_STR_ATI 0x8976 | |
152 #endif | |
153 #ifndef GL_4X_BIT_ATI | |
154 #define GL_4X_BIT_ATI 2 | |
155 #endif | |
156 #ifndef GL_BIAS_BIT_ATI | |
157 #define GL_BIAS_BIT_ATI 8 | |
158 #endif | |
16488
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
159 #ifndef GL_MAX_TEXTURE_UNITS |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
160 #define GL_MAX_TEXTURE_UNITS 0x84E2 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
161 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
162 #ifndef GL_TEXTURE0 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
163 #define GL_TEXTURE0 0x84C0 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
164 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
165 #ifndef GL_TEXTURE1 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
166 #define GL_TEXTURE1 0x84C1 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
167 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
168 #ifndef GL_TEXTURE2 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
169 #define GL_TEXTURE2 0x84C2 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
170 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
171 #ifndef GL_TEXTURE3 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
172 #define GL_TEXTURE3 0x84C3 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
173 #endif |
16099 | 174 #ifndef GL_TEXTURE_RECTANGLE |
175 #define GL_TEXTURE_RECTANGLE 0x84F5 | |
176 #endif | |
177 #ifndef GL_PIXEL_UNPACK_BUFFER | |
178 #define GL_PIXEL_UNPACK_BUFFER 0x88EC | |
179 #endif | |
180 #ifndef GL_STREAM_DRAW | |
181 #define GL_STREAM_DRAW 0x88E0 | |
182 #endif | |
16237
b951a75d4f83
Our buffer usage actually fits better to GL_DYNAMIC_DRAW than GL_STREAM_DRAW.
reimar
parents:
16233
diff
changeset
|
183 #ifndef GL_DYNAMIC_DRAW |
b951a75d4f83
Our buffer usage actually fits better to GL_DYNAMIC_DRAW than GL_STREAM_DRAW.
reimar
parents:
16233
diff
changeset
|
184 #define GL_DYNAMIC_DRAW 0x88E8 |
b951a75d4f83
Our buffer usage actually fits better to GL_DYNAMIC_DRAW than GL_STREAM_DRAW.
reimar
parents:
16233
diff
changeset
|
185 #endif |
16099 | 186 #ifndef GL_WRITE_ONLY |
187 #define GL_WRITE_ONLY 0x88B9 | |
188 #endif | |
16117 | 189 #ifndef GL_BGR |
190 #define GL_BGR 0x80E0 | |
191 #endif | |
192 #ifndef GL_BGRA | |
193 #define GL_BGRA 0x80E1 | |
194 #endif | |
195 #ifndef GL_UNSIGNED_BYTE_3_3_2 | |
196 #define GL_UNSIGNED_BYTE_3_3_2 0x8032 | |
197 #endif | |
198 #ifndef GL_UNSIGNED_BYTE_2_3_3_REV | |
199 #define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 | |
200 #endif | |
27845
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
201 #ifndef GL_UNSIGNED_SHORT_4_4_4_4 |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
202 #define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
203 #endif |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
204 #ifndef GL_UNSIGNED_SHORT_4_4_4_4_REV |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
205 #define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
206 #endif |
16117 | 207 #ifndef GL_UNSIGNED_SHORT_5_6_5 |
208 #define GL_UNSIGNED_SHORT_5_6_5 0x8363 | |
209 #endif | |
27845
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
210 #ifndef GL_UNSIGNED_INT_8_8_8_8 |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
211 #define GL_UNSIGNED_INT_8_8_8_8 0x8035 |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
212 #endif |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
213 #ifndef GL_UNSIGNED_INT_8_8_8_8_REV |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
214 #define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
215 #endif |
16117 | 216 #ifndef GL_UNSIGNED_SHORT_5_6_5_REV |
217 #define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 | |
218 #endif | |
27845
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
219 #ifndef GL_UNSIGNED_INT_10_10_10_2 |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
220 #define GL_UNSIGNED_INT_10_10_10_2 0x8036 |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
221 #endif |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
222 #ifndef GL_UNSIGNED_INT_2_10_10_10_REV |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
223 #define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 |
dedacb09ed45
Change OpenGL support to work on unmodified MinGW64
reimar
parents:
27621
diff
changeset
|
224 #endif |
16117 | 225 #ifndef GL_UNSIGNED_SHORT_5_5_5_1 |
226 #define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 | |
227 #endif | |
228 #ifndef GL_UNSIGNED_SHORT_1_5_5_5_REV | |
229 #define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 | |
230 #endif | |
28059
8f43ff543dc6
Add support for YCBCR MESA texture format to vo_gl.
reimar
parents:
27865
diff
changeset
|
231 #ifndef GL_UNSIGNED_SHORT_8_8 |
8f43ff543dc6
Add support for YCBCR MESA texture format to vo_gl.
reimar
parents:
27865
diff
changeset
|
232 #define GL_UNSIGNED_SHORT_8_8 0x85BA |
8f43ff543dc6
Add support for YCBCR MESA texture format to vo_gl.
reimar
parents:
27865
diff
changeset
|
233 #endif |
8f43ff543dc6
Add support for YCBCR MESA texture format to vo_gl.
reimar
parents:
27865
diff
changeset
|
234 #ifndef GL_UNSIGNED_SHORT_8_8_REV |
8f43ff543dc6
Add support for YCBCR MESA texture format to vo_gl.
reimar
parents:
27865
diff
changeset
|
235 #define GL_UNSIGNED_SHORT_8_8_REV 0x85BB |
8f43ff543dc6
Add support for YCBCR MESA texture format to vo_gl.
reimar
parents:
27865
diff
changeset
|
236 #endif |
8f43ff543dc6
Add support for YCBCR MESA texture format to vo_gl.
reimar
parents:
27865
diff
changeset
|
237 #ifndef GL_YCBCR_MESA |
8f43ff543dc6
Add support for YCBCR MESA texture format to vo_gl.
reimar
parents:
27865
diff
changeset
|
238 #define GL_YCBCR_MESA 0x8757 |
8f43ff543dc6
Add support for YCBCR MESA texture format to vo_gl.
reimar
parents:
27865
diff
changeset
|
239 #endif |
18961 | 240 #ifndef GL_RGB32F |
241 #define GL_RGB32F 0x8815 | |
242 #endif | |
243 #ifndef GL_FLOAT_RGB32_NV | |
244 #define GL_FLOAT_RGB32_NV 0x8889 | |
245 #endif | |
28070
9c1fdc6420be
100l, forgot setting GL_UNPACK_CLIENT_STORAGE_APPLE for mesa-buffer mode.
reimar
parents:
28067
diff
changeset
|
246 #ifndef GL_UNPACK_CLIENT_STORAGE_APPLE |
9c1fdc6420be
100l, forgot setting GL_UNPACK_CLIENT_STORAGE_APPLE for mesa-buffer mode.
reimar
parents:
28067
diff
changeset
|
247 #define GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2 |
9c1fdc6420be
100l, forgot setting GL_UNPACK_CLIENT_STORAGE_APPLE for mesa-buffer mode.
reimar
parents:
28067
diff
changeset
|
248 #endif |
16488
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
249 #ifndef GL_FRAGMENT_PROGRAM |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
250 #define GL_FRAGMENT_PROGRAM 0x8804 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
251 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
252 #ifndef GL_PROGRAM_FORMAT_ASCII |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
253 #define GL_PROGRAM_FORMAT_ASCII 0x8875 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
254 #endif |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
255 #ifndef GL_PROGRAM_ERROR_POSITION |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
256 #define GL_PROGRAM_ERROR_POSITION 0x864B |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
257 #endif |
27865
428125c9e08e
For fragment programs, check GL_MAX_TEXTURE_IMAGE_UNITS instead of GL_MAX_TEXTURE_UNITS.
reimar
parents:
27845
diff
changeset
|
258 #ifndef GL_MAX_TEXTURE_IMAGE_UNITS |
428125c9e08e
For fragment programs, check GL_MAX_TEXTURE_IMAGE_UNITS instead of GL_MAX_TEXTURE_UNITS.
reimar
parents:
27845
diff
changeset
|
259 #define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 |
428125c9e08e
For fragment programs, check GL_MAX_TEXTURE_IMAGE_UNITS instead of GL_MAX_TEXTURE_UNITS.
reimar
parents:
27845
diff
changeset
|
260 #endif |
18653
5af43a16abc3
loadGPUProgram function to load fragment program with error checking and statistics
reimar
parents:
18622
diff
changeset
|
261 #ifndef GL_PROGRAM_ERROR_STRING |
5af43a16abc3
loadGPUProgram function to load fragment program with error checking and statistics
reimar
parents:
18622
diff
changeset
|
262 #define GL_PROGRAM_ERROR_STRING 0x8874 |
5af43a16abc3
loadGPUProgram function to load fragment program with error checking and statistics
reimar
parents:
18622
diff
changeset
|
263 #endif |
16595
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
264 /** \} */ // end of glextdefines group |
16099 | 265 |
13653
799f81d3cb19
added gl_common for code used by both vo_gl.c and vo_gl2.c.
reimar
parents:
diff
changeset
|
266 void glAdjustAlignment(int stride); |
799f81d3cb19
added gl_common for code used by both vo_gl.c and vo_gl2.c.
reimar
parents:
diff
changeset
|
267 |
14078
c4033dcb986f
More similar code from gl and gl2 moved to gl_common
reimar
parents:
13921
diff
changeset
|
268 const char *glValName(GLint value); |
c4033dcb986f
More similar code from gl and gl2 moved to gl_common
reimar
parents:
13921
diff
changeset
|
269 |
16879
6ea220b10e8e
More consistent and sane types. Also avoids some gcc 4 warnings.
reimar
parents:
16625
diff
changeset
|
270 int glFindFormat(uint32_t format, int *bpp, GLint *gl_texfmt, |
14078
c4033dcb986f
More similar code from gl and gl2 moved to gl_common
reimar
parents:
13921
diff
changeset
|
271 GLenum *gl_format, GLenum *gl_type); |
16117 | 272 int glFmt2bpp(GLenum format, GLenum type); |
27621
53b5cf466361
Change glCreateClearTex to use the same host data format as later uploads.
reimar
parents:
27306
diff
changeset
|
273 void glCreateClearTex(GLenum target, GLenum fmt, GLenum format, GLenum type, GLint filter, |
16460 | 274 int w, int h, unsigned char val); |
16592 | 275 int glCreatePPMTex(GLenum target, GLenum fmt, GLint filter, |
276 FILE *f, int *width, int *height, int *maxval); | |
16117 | 277 void glUploadTex(GLenum target, GLenum format, GLenum type, |
21201 | 278 const void *dataptr, int stride, |
16117 | 279 int x, int y, int w, int h, int slice); |
16214
ede5b4afd262
Helper function for drawing texture and general cleanup of vo_gl2.c
reimar
parents:
16117
diff
changeset
|
280 void glDrawTex(GLfloat x, GLfloat y, GLfloat w, GLfloat h, |
ede5b4afd262
Helper function for drawing texture and general cleanup of vo_gl2.c
reimar
parents:
16117
diff
changeset
|
281 GLfloat tx, GLfloat ty, GLfloat tw, GLfloat th, |
17220 | 282 int sx, int sy, int rect_tex, int is_yv12, int flip); |
18653
5af43a16abc3
loadGPUProgram function to load fragment program with error checking and statistics
reimar
parents:
18622
diff
changeset
|
283 int loadGPUProgram(GLenum target, char *prog); |
16488
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
284 |
16595
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
285 /** \addtogroup glconversion |
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
286 * \{ */ |
16488
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
287 //! do not use YUV conversion, this should always stay 0 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
288 #define YUV_CONVERSION_NONE 0 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
289 //! use nVidia specific register combiners for YUV conversion |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
290 #define YUV_CONVERSION_COMBINERS 1 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
291 //! use a fragment program for YUV conversion |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
292 #define YUV_CONVERSION_FRAGMENT 2 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
293 //! use a fragment program for YUV conversion with gamma using POW |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
294 #define YUV_CONVERSION_FRAGMENT_POW 3 |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
295 //! use a fragment program with additional table lookup for YUV conversion |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
296 #define YUV_CONVERSION_FRAGMENT_LOOKUP 4 |
16625 | 297 //! use ATI specific register combiners ("fragment program") |
298 #define YUV_CONVERSION_COMBINERS_ATI 5 | |
18655
6aa0b26d584b
Add yuv to rgb conversion using a 3D lookup texture
reimar
parents:
18653
diff
changeset
|
299 //! use a fragment program with 3D table lookup for YUV conversion |
6aa0b26d584b
Add yuv to rgb conversion using a 3D lookup texture
reimar
parents:
18653
diff
changeset
|
300 #define YUV_CONVERSION_FRAGMENT_LOOKUP3D 6 |
18619
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
301 //! use normal bilinear scaling for textures |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
302 #define YUV_SCALER_BILIN 0 |
18622 | 303 //! use higher quality bicubic scaling for textures |
304 #define YUV_SCALER_BICUB 1 | |
22491 | 305 //! use cubic scaling in X and normal linear scaling in Y direction |
306 #define YUV_SCALER_BICUB_X 2 | |
24318
e6e8bf060dae
Add a bicubic scaler that needs a lot more instruction but no
reimar
parents:
23689
diff
changeset
|
307 //! use cubic scaling without additional lookup texture |
e6e8bf060dae
Add a bicubic scaler that needs a lot more instruction but no
reimar
parents:
23689
diff
changeset
|
308 #define YUV_SCALER_BICUB_NOTEX 3 |
25729
9a96fd14d1c5
Add experimental unsharp-mask OpenGL scaler. Certainly not yet perfect.
reimar
parents:
25535
diff
changeset
|
309 #define YUV_SCALER_UNSHARP 4 |
25758 | 310 #define YUV_SCALER_UNSHARP2 5 |
18619
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
311 //! mask for conversion type |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
312 #define YUV_CONVERSION_MASK 0xF |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
313 //! mask for scaler type |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
314 #define YUV_SCALER_MASK 0xF |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
315 //! shift value for luminance scaler type |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
316 #define YUV_LUM_SCALER_SHIFT 8 |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
317 //! shift value for chrominance scaler type |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
318 #define YUV_CHROM_SCALER_SHIFT 12 |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
319 //! extract conversion out of type |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
320 #define YUV_CONVERSION(t) (t & YUV_CONVERSION_MASK) |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
321 //! extract luminance scaler out of type |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
322 #define YUV_LUM_SCALER(t) ((t >> YUV_LUM_SCALER_SHIFT) & YUV_SCALER_MASK) |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
323 //! extract chrominance scaler out of type |
106a0c366002
Reworked YUV2RGB fragment program setup in preparation for upcoming patches
reimar
parents:
18578
diff
changeset
|
324 #define YUV_CHROM_SCALER(t) ((t >> YUV_CHROM_SCALER_SHIFT) & YUV_SCALER_MASK) |
16595
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
325 /** \} */ |
26835 | 326 typedef struct { |
327 GLenum target; | |
328 int type; | |
329 float brightness; | |
330 float contrast; | |
331 float hue; | |
332 float saturation; | |
333 float rgamma; | |
334 float ggamma; | |
335 float bgamma; | |
336 int texw; | |
337 int texh; | |
26836
ba086caf1230
Add a filter strength parameter for blurring/sharpening scalers.
reimar
parents:
26835
diff
changeset
|
338 float filter_strength; |
26835 | 339 } gl_conversion_params_t; |
340 | |
341 void glSetupYUVConversion(gl_conversion_params_t *params); | |
18175
01ca8a5fb8a6
minor fixes: get rid of pointless inline attributes and some additional checks
reimar
parents:
17688
diff
changeset
|
342 void glEnableYUVConversion(GLenum target, int type); |
01ca8a5fb8a6
minor fixes: get rid of pointless inline attributes and some additional checks
reimar
parents:
17688
diff
changeset
|
343 void glDisableYUVConversion(GLenum target, int type); |
14078
c4033dcb986f
More similar code from gl and gl2 moved to gl_common
reimar
parents:
13921
diff
changeset
|
344 |
16595
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
345 /** \addtogroup glcontext |
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
346 * \{ */ |
13843 | 347 //! could not set new window, will continue drawing into the old one. |
348 #define SET_WINDOW_FAILED -1 | |
349 //! new window is set, could even transfer the OpenGL context. | |
350 #define SET_WINDOW_OK 0 | |
351 //! new window is set, but the OpenGL context needs to be reinitialized. | |
352 #define SET_WINDOW_REINIT 1 | |
16595
b3a9fb41f475
fix/improve code doxumentation. Also group gl_common functions in several
reimar
parents:
16592
diff
changeset
|
353 /** \} */ |
13843 | 354 |
14142
f0c1ee83b216
Improving gl2 under windows, moving some functionality to gl_common
reimar
parents:
14078
diff
changeset
|
355 #ifdef GL_WIN32 |
27306
7a650839fc10
Enable runtime border/window decorations-toggling for Linux gl and gl2 vos.
reimar
parents:
26836
diff
changeset
|
356 #define vo_border() vo_w32_border() |
17116 | 357 #define vo_check_events() vo_w32_check_events() |
358 #define vo_fullscreen() vo_w32_fullscreen() | |
359 #define vo_ontop() vo_w32_ontop() | |
360 #define vo_uninit() vo_w32_uninit() | |
14142
f0c1ee83b216
Improving gl2 under windows, moving some functionality to gl_common
reimar
parents:
14078
diff
changeset
|
361 int setGlWindow(int *vinfo, HGLRC *context, HWND win); |
f0c1ee83b216
Improving gl2 under windows, moving some functionality to gl_common
reimar
parents:
14078
diff
changeset
|
362 void releaseGlContext(int *vinfo, HGLRC *context); |
f0c1ee83b216
Improving gl2 under windows, moving some functionality to gl_common
reimar
parents:
14078
diff
changeset
|
363 #else |
27306
7a650839fc10
Enable runtime border/window decorations-toggling for Linux gl and gl2 vos.
reimar
parents:
26836
diff
changeset
|
364 #define vo_border() vo_x11_border() |
17116 | 365 #define vo_check_events() vo_x11_check_events(mDisplay) |
366 #define vo_fullscreen() vo_x11_fullscreen() | |
367 #define vo_ontop() vo_x11_ontop() | |
368 #define vo_uninit() vo_x11_uninit() | |
13843 | 369 int setGlWindow(XVisualInfo **vinfo, GLXContext *context, Window win); |
13921 | 370 void releaseGlContext(XVisualInfo **vinfo, GLXContext *context); |
13653
799f81d3cb19
added gl_common for code used by both vo_gl.c and vo_gl2.c.
reimar
parents:
diff
changeset
|
371 #endif |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
17220
diff
changeset
|
372 void swapGlBuffers(void); |
13843 | 373 |
16233
f00a2826ee11
use GenBuffers to get a buffer number instead of hardcoding 1.
reimar
parents:
16214
diff
changeset
|
374 extern void (APIENTRY *GenBuffers)(GLsizei, GLuint *); |
f00a2826ee11
use GenBuffers to get a buffer number instead of hardcoding 1.
reimar
parents:
16214
diff
changeset
|
375 extern void (APIENTRY *DeleteBuffers)(GLsizei, const GLuint *); |
16099 | 376 extern void (APIENTRY *BindBuffer)(GLenum, GLuint); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28446
diff
changeset
|
377 extern GLvoid* (APIENTRY *MapBuffer)(GLenum, GLenum); |
16099 | 378 extern GLboolean (APIENTRY *UnmapBuffer)(GLenum); |
16109
519a307e3ccf
OpenGL fixes for windows and vo_gl.c ported to windows.
reimar
parents:
16099
diff
changeset
|
379 extern void (APIENTRY *BufferData)(GLenum, intptr_t, const GLvoid *, GLenum); |
16099 | 380 extern void (APIENTRY *CombinerParameterfv)(GLenum, const GLfloat *); |
381 extern void (APIENTRY *CombinerParameteri)(GLenum, GLint); | |
382 extern void (APIENTRY *CombinerInput)(GLenum, GLenum, GLenum, GLenum, GLenum, | |
383 GLenum); | |
384 extern void (APIENTRY *CombinerOutput)(GLenum, GLenum, GLenum, GLenum, GLenum, | |
385 GLenum, GLenum, GLboolean, GLboolean, | |
386 GLboolean); | |
16625 | 387 extern void (APIENTRY *BeginFragmentShader)(void); |
388 extern void (APIENTRY *EndFragmentShader)(void); | |
389 extern void (APIENTRY *SampleMap)(GLuint, GLuint, GLenum); | |
390 extern void (APIENTRY *ColorFragmentOp2)(GLenum, GLuint, GLuint, GLuint, GLuint, | |
391 GLuint, GLuint, GLuint, GLuint, GLuint); | |
392 extern void (APIENTRY *ColorFragmentOp3)(GLenum, GLuint, GLuint, GLuint, GLuint, | |
393 GLuint, GLuint, GLuint, GLuint, GLuint, | |
394 GLuint, GLuint, GLuint); | |
395 extern void (APIENTRY *SetFragmentShaderConstant)(GLuint, const GLfloat *); | |
16099 | 396 extern void (APIENTRY *ActiveTexture)(GLenum); |
397 extern void (APIENTRY *BindTexture)(GLenum, GLuint); | |
398 extern void (APIENTRY *MultiTexCoord2f)(GLenum, GLfloat, GLfloat); | |
16488
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
399 extern void (APIENTRY *GenPrograms)(GLsizei, GLuint *); |
3191dcb27a12
hardware color-space conversion for vo_gl and vo_gl2
reimar
parents:
16460
diff
changeset
|
400 extern void (APIENTRY *DeletePrograms)(GLsizei, const GLuint *); |
16099 | 401 extern void (APIENTRY *BindProgram)(GLenum, GLuint); |
402 extern void (APIENTRY *ProgramString)(GLenum, GLenum, GLsizei, const GLvoid *); | |
403 extern void (APIENTRY *ProgramEnvParameter4f)(GLenum, GLuint, GLfloat, GLfloat, | |
404 GLfloat, GLfloat); | |
16270 | 405 extern int (APIENTRY *SwapInterval)(int); |
18578 | 406 extern void (APIENTRY *TexImage3D)(GLenum, GLint, GLenum, GLsizei, GLsizei, |
407 GLsizei, GLint, GLenum, GLenum, const GLvoid *); | |
28067
7511f7328d93
Add experimental support for glXAllocateMemoryMESA
reimar
parents:
28059
diff
changeset
|
408 extern void* (APIENTRY *AllocateMemoryMESA)(void *, int, size_t, float, float, float); |
7511f7328d93
Add experimental support for glXAllocateMemoryMESA
reimar
parents:
28059
diff
changeset
|
409 extern void (APIENTRY *FreeMemoryMESA)(void *, int, void *); |
16099 | 410 |
26029 | 411 #endif /* MPLAYER_GL_COMMON_H */ |