1GLBLENDFUNC(3G)                 [FIXME: manual]                GLBLENDFUNC(3G)
2
3
4

NAME

6       glBlendFunc - specify pixel arithmetic
7

C SPECIFICATION

9       void glBlendFunc(GLenum sfactor, GLenum dfactor);
10
11       void glBlendFunci(GLuint buf, GLenum sfactor, GLenum dfactor);
12

PARAMETERS

14       buf
15           For glBlendFunci, specifies the index of the draw buffer for which
16           to set the blend function.
17
18       sfactor
19           Specifies how the red, green, blue, and alpha source blending
20           factors are computed. The initial value is GL_ONE.
21
22       dfactor
23           Specifies how the red, green, blue, and alpha destination blending
24           factors are computed. The following symbolic constants are
25           accepted: GL_ZERO, GL_ONE, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR,
26           GL_DST_COLOR, GL_ONE_MINUS_DST_COLOR, GL_SRC_ALPHA,
27           GL_ONE_MINUS_SRC_ALPHA, GL_DST_ALPHA, GL_ONE_MINUS_DST_ALPHA.
28           GL_CONSTANT_COLOR, GL_ONE_MINUS_CONSTANT_COLOR, GL_CONSTANT_ALPHA,
29           and GL_ONE_MINUS_CONSTANT_ALPHA. The initial value is GL_ZERO.
30

DESCRIPTION

32       Pixels can be drawn using a function that blends the incoming (source)
33       RGBA values with the RGBA values that are already in the frame buffer
34       (the destination values). Blending is initially disabled. Use
35       glEnable() and
36
37       glDisable with argument GL_BLEND to enable and disable blending.
38
39       glBlendFunc defines the operation of blending for all draw buffers when
40       it is enabled.  glBlendFunci defines the operation of blending for a
41       single draw buffer specified by buf when enabled for that draw buffer.
42       sfactor specifies which method is used to scale the source color
43       components.  dfactor specifies which method is used to scale the
44       destination color components. Both parameters must be one of the
45       following symbolic constants: GL_ZERO, GL_ONE, GL_SRC_COLOR,
46       GL_ONE_MINUS_SRC_COLOR, GL_DST_COLOR, GL_ONE_MINUS_DST_COLOR,
47       GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_DST_ALPHA,
48       GL_ONE_MINUS_DST_ALPHA, GL_CONSTANT_COLOR, GL_ONE_MINUS_CONSTANT_COLOR,
49       GL_CONSTANT_ALPHA, GL_ONE_MINUS_CONSTANT_ALPHA, GL_SRC_ALPHA_SATURATE,
50       GL_SRC1_COLOR, GL_ONE_MINUS_SRC1_COLOR, GL_SRC1_ALPHA, and
51       GL_ONE_MINUS_SRC1_ALPHA. The possible methods are described in the
52       following table. Each method defines four scale factors, one each for
53       red, green, blue, and alpha. In the table and in subsequent equations,
54       first source, second source and destination color components are
55       referred to as R s0 G s0 B s0 A s0, R s1 G s1 B s1 A s1 and R d G d B d
56       A d, respectively. The color specified by glBlendColor() is referred to
57       as R c G c B c A c. They are understood to have integer values between
58       0 and k R k G k B k A, where
59
60       k c = 2 m c - 1
61
62       and m R m G m B m A is the number of red, green, blue, and alpha
63       bitplanes.
64
65       Source and destination scale factors are referred to as s R s G s B s A
66       and d R d G d B d A. The scale factors described in the table, denoted
67       f R f G f B f A, represent either source or destination factors. All
68       scale factors have range 0 1.
69
70       ┌────────────────────────────┬────────────────────────────────────────────┐
71Parameter                  f                                          
72       │                            │                                     R      
73       │                            │                                            │
74       │                            │                                     f      
75       │                            │                                     G      
76       │                            │                                            │
77       │                            │                                     f      
78       │                            │                                     B      
79       │                            │                                            │
80       │                            │                                     f      
81       │                            │                                     A      
82       ├────────────────────────────┼────────────────────────────────────────────┤
83GL_ZERO                     │ 0                                          │
84       │                            │                                 0          │
85       │                            │                                 0          │
86       │                            │                                 0          │
87       ├────────────────────────────┼────────────────────────────────────────────┤
88GL_ONE                      │ 1                                          │
89       │                            │                                 1          │
90       │                            │                                 1          │
91       │                            │                                 1          │
92       ├────────────────────────────┼────────────────────────────────────────────┤
93GL_SRC_COLOR                │ R                                          │
94       │                            │                                     s0     │
95       │                            │                                            │
96       │                            │                                     k      │
97       │                            │                                     R      │
98       │                            │                                            │
99       │                            │                                            │
100       │                            │                                            │
101       │                            │                                     G      │
102       │                            │                                     s0     │
103       │                            │                                            │
104       │                            │                                     k      │
105       │                            │                                     G      │
106       │                            │                                            │
107       │                            │                                            │
108       │                            │                                            │
109       │                            │                                     B      │
110       │                            │                                     s0     │
111       │                            │                                            │
112       │                            │                                     k      │
113       │                            │                                     B      │
114       │                            │                                            │
115       │                            │                                            │
116       │                            │                                            │
117       │                            │                                     A      │
118       │                            │                                     s0     │
119       │                            │                                            │
120       │                            │                                     k      │
121       │                            │                                     A      │
122       ├────────────────────────────┼────────────────────────────────────────────┤
123GL_ONE_MINUS_SRC_COLOR      │ 1                                          │
124       │                            │                                     1      │
125       │                            │                                     1      │
126       │                            │                                     1      │
127       │                            │                                            │
128       │                            │                                 -          │
129       │                            │                                            │
130       │                            │                                            │
131       │                            │                                         R  │
132       │                            │                                         s0 │
133       │                            │                                            │
134       │                            │                                         k  │
135       │                            │                                         R  │
136       │                            │                                            │
137       │                            │                                            │
138       │                            │                                            │
139       │                            │                                         G  │
140       │                            │                                         s0 │
141       │                            │                                            │
142       │                            │                                         k  │
143       │                            │                                         G  │
144       │                            │                                            │
145       │                            │                                            │
146       │                            │                                            │
147       │                            │                                         B  │
148       │                            │                                         s0 │
149       │                            │                                            │
150       │                            │                                         k  │
151       │                            │                                         B  │
152       │                            │                                            │
153       │                            │                                            │
154       │                            │                                            │
155       │                            │                                         A  │
156       │                            │                                         s0 │
157       │                            │                                            │
158       │                            │                                         k  │
159       │                            │                                         A  │
160       ├────────────────────────────┼────────────────────────────────────────────┤
161GL_DST_COLOR                │ R                                          │
162       │                            │                                     d      │
163       │                            │                                            │
164       │                            │                                     k      │
165       │                            │                                     R      │
166       │                            │                                            │
167       │                            │                                            │
168       │                            │                                            │
169       │                            │                                     G      │
170       │                            │                                     d      │
171       │                            │                                            │
172       │                            │                                     k      │
173       │                            │                                     G      │
174       │                            │                                            │
175       │                            │                                            │
176       │                            │                                            │
177       │                            │                                     B      │
178       │                            │                                     d      │
179       │                            │                                            │
180       │                            │                                     k      │
181       │                            │                                     B      │
182       │                            │                                            │
183       │                            │                                            │
184       │                            │                                            │
185       │                            │                                     A      │
186       │                            │                                     d      │
187       │                            │                                            │
188       │                            │                                     k      │
189       │                            │                                     A      │
190       ├────────────────────────────┼────────────────────────────────────────────┤
191GL_ONE_MINUS_DST_COLOR      │ 1                                          │
192       │                            │                                     1      │
193       │                            │                                     1      │
194       │                            │                                     1      │
195       │                            │                                            │
196       │                            │                                 -          │
197       │                            │                                            │
198       │                            │                                            │
199       │                            │                                         R  │
200       │                            │                                         d  │
201       │                            │                                            │
202       │                            │                                         k  │
203       │                            │                                         R  │
204       │                            │                                            │
205       │                            │                                            │
206       │                            │                                            │
207       │                            │                                         G  │
208       │                            │                                         d  │
209       │                            │                                            │
210       │                            │                                         k  │
211       │                            │                                         G  │
212       │                            │                                            │
213       │                            │                                            │
214       │                            │                                            │
215       │                            │                                         B  │
216       │                            │                                         d  │
217       │                            │                                            │
218       │                            │                                         k  │
219       │                            │                                         B  │
220       │                            │                                            │
221       │                            │                                            │
222       │                            │                                            │
223       │                            │                                         A  │
224       │                            │                                         d  │
225       │                            │                                            │
226       │                            │                                         k  │
227       │                            │                                         A  │
228       ├────────────────────────────┼────────────────────────────────────────────┤
229GL_SRC_ALPHA                │ A                                          │
230       │                            │                                     s0     │
231       │                            │                                            │
232       │                            │                                     k      │
233       │                            │                                     A      │
234       │                            │                                            │
235       │                            │                                            │
236       │                            │                                            │
237       │                            │                                     A      │
238       │                            │                                     s0     │
239       │                            │                                            │
240       │                            │                                     k      │
241       │                            │                                     A      │
242       │                            │                                            │
243       │                            │                                            │
244       │                            │                                            │
245       │                            │                                     A      │
246       │                            │                                     s0     │
247       │                            │                                            │
248       │                            │                                     k      │
249       │                            │                                     A      │
250       │                            │                                            │
251       │                            │                                            │
252       │                            │                                            │
253       │                            │                                     A      │
254       │                            │                                     s0     │
255       │                            │                                            │
256       │                            │                                     k      │
257       │                            │                                     A      │
258       ├────────────────────────────┼────────────────────────────────────────────┤
259GL_ONE_MINUS_SRC_ALPHA      │ 1                                          │
260       │                            │                                     1      │
261       │                            │                                     1      │
262       │                            │                                     1      │
263       │                            │                                            │
264       │                            │                                 -          │
265       │                            │                                            │
266       │                            │                                            │
267       │                            │                                         A  │
268       │                            │                                         s0 │
269       │                            │                                            │
270       │                            │                                         k  │
271       │                            │                                         A  │
272       │                            │                                            │
273       │                            │                                            │
274       │                            │                                            │
275       │                            │                                         A  │
276       │                            │                                         s0 │
277       │                            │                                            │
278       │                            │                                         k  │
279       │                            │                                         A  │
280       │                            │                                            │
281       │                            │                                            │
282       │                            │                                            │
283       │                            │                                         A  │
284       │                            │                                         s0 │
285       │                            │                                            │
286       │                            │                                         k  │
287       │                            │                                         A  │
288       │                            │                                            │
289       │                            │                                            │
290       │                            │                                            │
291       │                            │                                         A  │
292       │                            │                                         s0 │
293       │                            │                                            │
294       │                            │                                         k  │
295       │                            │                                         A  │
296       ├────────────────────────────┼────────────────────────────────────────────┤
297GL_DST_ALPHA                │ A                                          │
298       │                            │                                     d      │
299       │                            │                                            │
300       │                            │                                     k      │
301       │                            │                                     A      │
302       │                            │                                            │
303       │                            │                                            │
304       │                            │                                            │
305       │                            │                                     A      │
306       │                            │                                     d      │
307       │                            │                                            │
308       │                            │                                     k      │
309       │                            │                                     A      │
310       │                            │                                            │
311       │                            │                                            │
312       │                            │                                            │
313       │                            │                                     A      │
314       │                            │                                     d      │
315       │                            │                                            │
316       │                            │                                     k      │
317       │                            │                                     A      │
318       │                            │                                            │
319       │                            │                                            │
320       │                            │                                            │
321       │                            │                                     A      │
322       │                            │                                     d      │
323       │                            │                                            │
324       │                            │                                     k      │
325       │                            │                                     A      │
326       ├────────────────────────────┼────────────────────────────────────────────┤
327GL_ONE_MINUS_DST_ALPHA      │ 1                                          │
328       │                            │                                     1      │
329       │                            │                                     1      │
330       │                            │                                     1      │
331       │                            │                                            │
332       │                            │                                 -          │
333       │                            │                                            │
334       │                            │                                            │
335       │                            │                                         A  │
336       │                            │                                         d  │
337       │                            │                                            │
338       │                            │                                         k  │
339       │                            │                                         A  │
340       │                            │                                            │
341       │                            │                                            │
342       │                            │                                            │
343       │                            │                                         A  │
344       │                            │                                         d  │
345       │                            │                                            │
346       │                            │                                         k  │
347       │                            │                                         A  │
348       │                            │                                            │
349       │                            │                                            │
350       │                            │                                            │
351       │                            │                                         A  │
352       │                            │                                         d  │
353       │                            │                                            │
354       │                            │                                         k  │
355       │                            │                                         A  │
356       │                            │                                            │
357       │                            │                                            │
358       │                            │                                            │
359       │                            │                                         A  │
360       │                            │                                         d  │
361       │                            │                                            │
362       │                            │                                         k  │
363       │                            │                                         A  │
364       ├────────────────────────────┼────────────────────────────────────────────┤
365GL_CONSTANT_COLOR           │ R                                          │
366       │                            │                                 c          │
367       │                            │                                            │
368       │                            │                                 G          │
369       │                            │                                 c          │
370       │                            │                                            │
371       │                            │                                 B          │
372       │                            │                                 c          │
373       │                            │                                            │
374       │                            │                                 A          │
375       │                            │                                 c          │
376       ├────────────────────────────┼────────────────────────────────────────────┤
377GL_ONE_MINUS_CONSTANT_COLOR │ 1                                          │
378       │                            │                                     1      │
379       │                            │                                     1      │
380       │                            │                                     1      │
381       │                            │                                            │
382       │                            │                                 -          │
383       │                            │                                            │
384       │                            │                                     R      │
385       │                            │                                     c      │
386       │                            │                                            │
387       │                            │                                     G      │
388       │                            │                                     c      │
389       │                            │                                            │
390       │                            │                                     B      │
391       │                            │                                     c      │
392       │                            │                                            │
393       │                            │                                     A      │
394       │                            │                                     c      │
395       ├────────────────────────────┼────────────────────────────────────────────┤
396GL_CONSTANT_ALPHA           │ A                                          │
397       │                            │                                 c          │
398       │                            │                                            │
399       │                            │                                 A          │
400       │                            │                                 c          │
401       │                            │                                            │
402       │                            │                                 A          │
403       │                            │                                 c          │
404       │                            │                                            │
405       │                            │                                 A          │
406       │                            │                                 c          │
407       ├────────────────────────────┼────────────────────────────────────────────┤
408GL_ONE_MINUS_CONSTANT_ALPHA │ 1                                          │
409       │                            │                                     1      │
410       │                            │                                     1      │
411       │                            │                                     1      │
412       │                            │                                            │
413       │                            │                                 -          │
414       │                            │                                            │
415       │                            │                                     A      │
416       │                            │                                     c      │
417       │                            │                                            │
418       │                            │                                     A      │
419       │                            │                                     c      │
420       │                            │                                            │
421       │                            │                                     A      │
422       │                            │                                     c      │
423       │                            │                                            │
424       │                            │                                     A      │
425       │                            │                                     c      │
426       ├────────────────────────────┼────────────────────────────────────────────┤
427GL_SRC_ALPHA_SATURATE       │ i                                          │
428       │                            │                                 i          │
429       │                            │                                 i          │
430       │                            │                                 1          │
431       ├────────────────────────────┼────────────────────────────────────────────┤
432GL_SRC1_COLOR               │ R                                          │
433       │                            │                                     s1     │
434       │                            │                                            │
435       │                            │                                     k      │
436       │                            │                                     R      │
437       │                            │                                            │
438       │                            │                                            │
439       │                            │                                            │
440       │                            │                                     G      │
441       │                            │                                     s1     │
442       │                            │                                            │
443       │                            │                                     k      │
444       │                            │                                     G      │
445       │                            │                                            │
446       │                            │                                            │
447       │                            │                                            │
448       │                            │                                     B      │
449       │                            │                                     s1     │
450       │                            │                                            │
451       │                            │                                     k      │
452       │                            │                                     B      │
453       │                            │                                            │
454       │                            │                                            │
455       │                            │                                            │
456       │                            │                                     A      │
457       │                            │                                     s1     │
458       │                            │                                            │
459       │                            │                                     k      │
460       │                            │                                     A      │
461       ├────────────────────────────┼────────────────────────────────────────────┤
462GL_ONE_MINUS_SRC1_COLOR     │ 1                                          │
463       │                            │                                     1      │
464       │                            │                                     1      │
465       │                            │                                     1      │
466       │                            │                                            │
467       │                            │                                 -          │
468       │                            │                                            │
469       │                            │                                            │
470       │                            │                                         R  │
471       │                            │                                         s1 │
472       │                            │                                            │
473       │                            │                                         k  │
474       │                            │                                         R  │
475       │                            │                                            │
476       │                            │                                            │
477       │                            │                                            │
478       │                            │                                         G  │
479       │                            │                                         s1 │
480       │                            │                                            │
481       │                            │                                         k  │
482       │                            │                                         G  │
483       │                            │                                            │
484       │                            │                                            │
485       │                            │                                            │
486       │                            │                                         B  │
487       │                            │                                         s1 │
488       │                            │                                            │
489       │                            │                                         k  │
490       │                            │                                         B  │
491       │                            │                                            │
492       │                            │                                            │
493       │                            │                                            │
494       │                            │                                         A  │
495       │                            │                                         s1 │
496       │                            │                                            │
497       │                            │                                         k  │
498       │                            │                                         A  │
499       ├────────────────────────────┼────────────────────────────────────────────┤
500GL_SRC1_ALPHA               │ A                                          │
501       │                            │                                     s1     │
502       │                            │                                            │
503       │                            │                                     k      │
504       │                            │                                     A      │
505       │                            │                                            │
506       │                            │                                            │
507       │                            │                                            │
508       │                            │                                     A      │
509       │                            │                                     s1     │
510       │                            │                                            │
511       │                            │                                     k      │
512       │                            │                                     A      │
513       │                            │                                            │
514       │                            │                                            │
515       │                            │                                            │
516       │                            │                                     A      │
517       │                            │                                     s1     │
518       │                            │                                            │
519       │                            │                                     k      │
520       │                            │                                     A      │
521       │                            │                                            │
522       │                            │                                            │
523       │                            │                                            │
524       │                            │                                     A      │
525       │                            │                                     s1     │
526       │                            │                                            │
527       │                            │                                     k      │
528       │                            │                                     A      │
529       ├────────────────────────────┼────────────────────────────────────────────┤
530GL_ONE_MINUS_SRC1_ALPHA     │ 1                                          │
531       │                            │                                     1      │
532       │                            │                                     1      │
533       │                            │                                     1      │
534       │                            │                                            │
535       │                            │                                 -          │
536       │                            │                                            │
537       │                            │                                            │
538       │                            │                                         A  │
539       │                            │                                         s1 │
540       │                            │                                            │
541       │                            │                                         k  │
542       │                            │                                         A  │
543       │                            │                                            │
544       │                            │                                            │
545       │                            │                                            │
546       │                            │                                         A  │
547       │                            │                                         s1 │
548       │                            │                                            │
549       │                            │                                         k  │
550       │                            │                                         A  │
551       │                            │                                            │
552       │                            │                                            │
553       │                            │                                            │
554       │                            │                                         A  │
555       │                            │                                         s1 │
556       │                            │                                            │
557       │                            │                                         k  │
558       │                            │                                         A  │
559       │                            │                                            │
560       │                            │                                            │
561       │                            │                                            │
562       │                            │                                         A  │
563       │                            │                                         s1 │
564       │                            │                                            │
565       │                            │                                         k  │
566       │                            │                                         A  │
567       └────────────────────────────┴────────────────────────────────────────────┘
568
569       In the table,
570
571       i = min ⁡ A s k A - A d k A
572
573       To determine the blended RGBA values of a pixel, the system uses the
574       following equations:
575
576       R d = min ⁡ k R R s ⁢ s R + R d ⁢ d R G d = min ⁡ k G G s ⁢ s G + G d ⁢
577       d G B d = min ⁡ k B B s ⁢ s B + B d ⁢ d B A d = min ⁡ k A A s ⁢ s A + A
578       d ⁢ d A
579
580       Despite the apparent precision of the above equations, blending
581       arithmetic is not exactly specified, because blending operates with
582       imprecise integer color values. However, a blend factor that should be
583       equal to 1 is guaranteed not to modify its multiplicand, and a blend
584       factor equal to 0 reduces its multiplicand to 0. For example, when
585       sfactor is GL_SRC_ALPHA, dfactor is GL_ONE_MINUS_SRC_ALPHA, and A s is
586       equal to k A, the equations reduce to simple replacement:
587
588       R d = R s G d = G s B d = B s A d = A s
589

EXAMPLES

591       Transparency is best implemented using blend function (GL_SRC_ALPHA,
592       GL_ONE_MINUS_SRC_ALPHA) with primitives sorted from farthest to
593       nearest. Note that this transparency calculation does not require the
594       presence of alpha bitplanes in the frame buffer.
595
596       Blend function (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA) is also useful
597       for rendering antialiased points and lines in arbitrary order.
598
599       Polygon antialiasing is optimized using blend function
600       (GL_SRC_ALPHA_SATURATE, GL_ONE) with polygons sorted from nearest to
601       farthest. (See the glEnable(),
602
603       glDisable reference page and the GL_POLYGON_SMOOTH argument for
604       information on polygon antialiasing.) Destination alpha bitplanes,
605       which must be present for this blend function to operate correctly,
606       store the accumulated coverage.
607

NOTES

609       Incoming (source) alpha is correctly thought of as a material opacity,
610       ranging from 1.0 (K A), representing complete opacity, to 0.0 (0),
611       representing complete transparency.
612
613       When more than one color buffer is enabled for drawing, the GL performs
614       blending separately for each enabled buffer, using the contents of that
615       buffer for destination color. (See glDrawBuffer().)
616
617       When dual source blending is enabled (i.e., one of the blend factors
618       requiring the second color input is used), the maximum number of
619       enabled draw buffers is given by GL_MAX_DUAL_SOURCE_DRAW_BUFFERS, which
620       may be lower than GL_MAX_DRAW_BUFFERS.
621

ERRORS

623       GL_INVALID_ENUM is generated if either sfactor or dfactor is not an
624       accepted value.
625
626       GL_INVALID_VALUE is generated by glBlendFunci if buf is greater than or
627       equal to the value of GL_MAX_DRAW_BUFFERS.
628

ASSOCIATED GETS

630       glGet() with argument GL_BLEND_SRC_RGB
631
632       glGet() with argument GL_BLEND_SRC_ALPHA
633
634       glGet() with argument GL_BLEND_DST_RGB
635
636       glGet() with argument GL_BLEND_DST_ALPHA
637
638       glIsEnabled() with argument GL_BLEND
639

VERSION SUPPORT

641       ┌─────────────┬───────────────────────────────────────────────────────────────────────┐
642       │             │                OpenGL Version                                         
643       ├─────────────┼─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┤
644Function     2.0 2.1 3.0 3.1 3.2 3.3 4.0 4.1 4.2 4.3 4.4 4.5 
645/            │     │     │     │     │     │     │     │     │     │     │     │     │
646Feature      │     │     │     │     │     │     │     │     │     │     │     │     │
647Name         │     │     │     │     │     │     │     │     │     │     │     │     │
648       ├─────────────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┤
649glBlendFunc  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │
650       ├─────────────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┤
651glBlendFunci │  -  │  -  │  -  │  -  │  -  │  -  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │
652       └─────────────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┘
653

SEE ALSO

655       glBlendColor(), glBlendEquation(), glBlendFuncSeparate(), glClear(),
656       glDrawBuffer(), glEnable(), glLogicOp(), glStencilFunc()
657
659       Copyright © 1991-2006 Silicon Graphics, Inc. Copyright © 2010-2014
660       Khronos Group. This document is licensed under the SGI Free Software B
661       License. For details, see http://oss.sgi.com/projects/FreeB/.
662
664       Copyright © 1991-2006 Silicon Graphics, Inc.
665       Copyright © 2010-2014 Khronos Group
666
667
668
669[FIXME: source]                   03/06/2019                   GLBLENDFUNC(3G)
Impressum