File: glSamplerParameter.xml

package info (click to toggle)
khronos-opengl-man4 1.0~svn33624-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,304 kB
  • sloc: xml: 93,066; makefile: 730; python: 627; javascript: 55; sh: 50; php: 4
file content (1167 lines) | stat: -rw-r--r-- 77,750 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
<!DOCTYPE refentry [ <!ENTITY % mathent SYSTEM "math.ent"> %mathent; ]>

<!-- Converted by db4-upgrade version 1.1 -->

<refentry xmlns="http://docbook.org/ns/docbook" version="5.0" xml:id="glSamplerParameter">
    <info>
        <copyright>
            <year>2010-2014</year>
            <holder>KhronosGroup</holder>
        </copyright>
    </info>
    <refmeta>
        <refentrytitle>glSamplerParameter</refentrytitle>
        <manvolnum>3G</manvolnum>
    </refmeta>
    <refnamediv>
        <refname>glSamplerParameter</refname>
        <refpurpose>set sampler parameters</refpurpose>
    </refnamediv>
    <refsynopsisdiv><title>C Specification</title>
        <funcsynopsis>
            <funcprototype>
                <funcdef>void <function>glSamplerParameterf</function></funcdef>
                <paramdef>GLuint <parameter>sampler</parameter></paramdef>
                <paramdef>GLenum <parameter>pname</parameter></paramdef>
                <paramdef>GLfloat <parameter>param</parameter></paramdef>
            </funcprototype>
        </funcsynopsis>
        <funcsynopsis>
            <funcprototype>
                <funcdef>void <function>glSamplerParameteri</function></funcdef>
                <paramdef>GLuint <parameter>sampler</parameter></paramdef>
                <paramdef>GLenum <parameter>pname</parameter></paramdef>
                <paramdef>GLint <parameter>param</parameter></paramdef>
            </funcprototype>
        </funcsynopsis>
            <!-- Vector commands -->
        <funcsynopsis>
            <funcprototype>
                <funcdef>void <function>glSamplerParameterfv</function></funcdef>
                <paramdef>GLuint <parameter>sampler</parameter></paramdef>
                <paramdef>GLenum <parameter>pname</parameter></paramdef>
                <paramdef>const GLfloat * <parameter>params</parameter></paramdef>
            </funcprototype>
        </funcsynopsis>
        <funcsynopsis>
            <funcprototype>
                <funcdef>void <function>glSamplerParameteriv</function></funcdef>
                <paramdef>GLuint <parameter>sampler</parameter></paramdef>
                <paramdef>GLenum <parameter>pname</parameter></paramdef>
                <paramdef>const GLint * <parameter>params</parameter></paramdef>
            </funcprototype>
        </funcsynopsis>
        <funcsynopsis>
            <funcprototype>
                <funcdef>void <function>glSamplerParameterIiv</function></funcdef>
                <paramdef>GLuint <parameter>sampler</parameter></paramdef>
                <paramdef>GLenum <parameter>pname</parameter></paramdef>
                <paramdef>const GLint *<parameter>params</parameter></paramdef>
            </funcprototype>
        </funcsynopsis>
        <funcsynopsis>
            <funcprototype>
                <funcdef>void <function>glSamplerParameterIuiv</function></funcdef>
                <paramdef>GLuint <parameter>sampler</parameter></paramdef>
                <paramdef>GLenum <parameter>pname</parameter></paramdef>
                <paramdef>const GLuint *<parameter>params</parameter></paramdef>
            </funcprototype>
        </funcsynopsis>
    </refsynopsisdiv>
    <refsect1 xml:id="parameters"><title>Parameters</title>
        <variablelist>
        <varlistentry>
            <term><parameter>sampler</parameter></term>
            <listitem>
                <para>
                    Specifies the sampler object whose parameter to modify.
                </para>
            </listitem>
        </varlistentry>
        <varlistentry>
            <term><parameter>pname</parameter></term>
            <listitem>
                <para>
                    Specifies the symbolic name of a sampler parameter.
                    <parameter>pname</parameter> can be one of the
                    following:
                    <constant>GL_TEXTURE_WRAP_S</constant>,
                    <constant>GL_TEXTURE_WRAP_T</constant>,
                    <constant>GL_TEXTURE_WRAP_R</constant>,
                    <constant>GL_TEXTURE_MIN_FILTER</constant>,
                    <constant>GL_TEXTURE_MAG_FILTER</constant>,
                    <constant>GL_TEXTURE_BORDER_COLOR</constant>,
                    <constant>GL_TEXTURE_MIN_LOD</constant>,
                    <constant>GL_TEXTURE_MAX_LOD</constant>,
                    <constant>GL_TEXTURE_LOD_BIAS</constant>
                    <constant>GL_TEXTURE_COMPARE_MODE</constant>, or
                    <constant>GL_TEXTURE_COMPARE_FUNC</constant>.
                </para>
            </listitem>
        </varlistentry>
        <varlistentry>
            <term><parameter>param</parameter></term>
            <listitem>
                <para>
                    For the scalar commands, specifies the value of
                    <parameter>pname</parameter>.
                </para>
            </listitem>
        </varlistentry>
        <varlistentry>
            <term><parameter>params</parameter></term>
            <listitem>
                <para>
                    For the vector commands
                    (<function>glSamplerParameter*v</function>), specifies a
                    pointer to an array where the value or values of
                    <parameter>pname</parameter> are stored.
                </para>
            </listitem>
        </varlistentry>
        </variablelist>
    </refsect1>
    <refsect1 xml:id="description"><title>Description</title>
        <para>
            <function>glSamplerParameter</function> assigns the value or values in <parameter>params</parameter> to the sampler parameter
            specified as <parameter>pname</parameter>.
            <parameter>sampler</parameter> specifies the sampler object to be modified, and must be the name of a sampler object previously
            returned from a call to <citerefentry><refentrytitle>glGenSamplers</refentrytitle></citerefentry>.
            The following symbols are accepted in <parameter>pname</parameter>:
        </para>
        <variablelist>
            <varlistentry>
                <term><constant>GL_TEXTURE_MIN_FILTER</constant></term>
                <listitem>
                    <para>
                        The texture minifying function is used whenever the pixel being textured
                        maps to an area greater than one texture element.
                        There are six defined minifying functions.
                        Two of them use the nearest one or nearest four texture elements
                        to compute the texture value.
                        The other four use mipmaps.
                    </para>
                    <para>
                        A mipmap is an ordered set of arrays representing the same image
                        at progressively lower resolutions.
                        If the texture has dimensions
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: 2 sup n  times  2 sup m: -->
                            <mml:mrow>
                                <mml:msup><mml:mn>2</mml:mn>
                                <mml:mi mathvariant="italic">n</mml:mi>
                                </mml:msup>
                                <mml:mo>&times;</mml:mo>
                                <mml:msup><mml:mn>2</mml:mn>
                                <mml:mi mathvariant="italic">m</mml:mi>
                                </mml:msup>
                            </mml:mrow>
                        </mml:math></inlineequation>,
                        there are
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: max ( n, m ) + 1: -->
                            <mml:mrow>
                                <mml:mrow>
                                    <mml:mi mathvariant="italic">max</mml:mi>
                                    <mml:mo>&af;</mml:mo>
                                    <mml:mfenced open="(" close=")">
                                        <mml:mi mathvariant="italic">n</mml:mi>
                                        <mml:mi mathvariant="italic">m</mml:mi>
                                    </mml:mfenced>
                                </mml:mrow>
                                <mml:mo>+</mml:mo>
                                <mml:mn>1</mml:mn>
                            </mml:mrow>
                        </mml:math></inlineequation>
                        mipmaps.
                        The first mipmap is the original texture,
                        with dimensions
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: 2 sup n  times  2 sup m: -->
                            <mml:mrow>
                                <mml:msup><mml:mn>2</mml:mn>
                                <mml:mi mathvariant="italic">n</mml:mi>
                                </mml:msup>
                                <mml:mo>&times;</mml:mo>
                                <mml:msup><mml:mn>2</mml:mn>
                                <mml:mi mathvariant="italic">m</mml:mi>
                                </mml:msup>
                            </mml:mrow>
                        </mml:math></inlineequation>.
                        Each subsequent mipmap has dimensions
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: 2 sup { k - 1 }  times  2 sup { l - 1 }: -->
                            <mml:mrow>
                                <mml:msup><mml:mn>2</mml:mn>
                                <mml:mfenced open="" close="">
                                    <mml:mrow>
                                        <mml:mi mathvariant="italic">k</mml:mi>
                                        <mml:mo>-</mml:mo>
                                        <mml:mn>1</mml:mn>
                                    </mml:mrow>
                                </mml:mfenced>
                                </mml:msup>
                                <mml:mo>&times;</mml:mo>
                                <mml:msup><mml:mn>2</mml:mn>
                                <mml:mfenced open="" close="">
                                    <mml:mrow>
                                        <mml:mi mathvariant="italic">l</mml:mi>
                                        <mml:mo>-</mml:mo>
                                        <mml:mn>1</mml:mn>
                                    </mml:mrow>
                                </mml:mfenced>
                                </mml:msup>
                            </mml:mrow>
                        </mml:math></inlineequation>,
                        where
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: 2 sup k  times  2 sup l: -->
                            <mml:mrow>
                                <mml:msup><mml:mn>2</mml:mn>
                                <mml:mi mathvariant="italic">k</mml:mi>
                                </mml:msup>
                                <mml:mo>&times;</mml:mo>
                                <mml:msup><mml:mn>2</mml:mn>
                                <mml:mi mathvariant="italic">l</mml:mi>
                                </mml:msup>
                            </mml:mrow>
                        </mml:math></inlineequation>
                        are the dimensions of the previous mipmap,
                        until either
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: k  =  0: -->
                            <mml:mrow>
                                <mml:mi mathvariant="italic">k</mml:mi>
                                <mml:mo>=</mml:mo>
                                <mml:mn>0</mml:mn>
                            </mml:mrow>
                        </mml:math></inlineequation>
                        or
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: l = 0: -->
                            <mml:mrow>
                                <mml:mi mathvariant="italic">l</mml:mi>
                                <mml:mo>=</mml:mo>
                                <mml:mn>0</mml:mn>
                            </mml:mrow>
                        </mml:math></inlineequation>.
                        At that point,
                        subsequent mipmaps have dimension
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: 1  times  2 sup { l - 1 }: -->
                            <mml:mrow>
                                <mml:mn>1</mml:mn>
                                <mml:mo>&times;</mml:mo>
                                <mml:msup><mml:mn>2</mml:mn>
                                <mml:mfenced open="" close="">
                                    <mml:mrow>
                                        <mml:mi mathvariant="italic">l</mml:mi>
                                        <mml:mo>-</mml:mo>
                                        <mml:mn>1</mml:mn>
                                    </mml:mrow>
                                </mml:mfenced>
                                </mml:msup>
                            </mml:mrow>
                        </mml:math></inlineequation>
                        or
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: 2 sup { k - 1}  times  1: -->
                            <mml:mrow>
                                <mml:msup><mml:mn>2</mml:mn>
                                <mml:mfenced open="" close="">
                                    <mml:mrow>
                                        <mml:mi mathvariant="italic">k</mml:mi>
                                        <mml:mo>-</mml:mo>
                                        <mml:mn>1</mml:mn>
                                    </mml:mrow>
                                </mml:mfenced>
                                </mml:msup>
                                <mml:mo>&times;</mml:mo>
                                <mml:mn>1</mml:mn>
                            </mml:mrow>
                        </mml:math></inlineequation>
                        until the final mipmap,
                        which has dimension
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: 1  times  1: -->
                            <mml:mrow>
                                <mml:mn>1</mml:mn>
                                <mml:mo>&times;</mml:mo>
                                <mml:mn>1</mml:mn>
                            </mml:mrow>
                        </mml:math></inlineequation>.
                        To define the mipmaps, call <citerefentry><refentrytitle>glTexImage1D</refentrytitle></citerefentry>, <citerefentry><refentrytitle>glTexImage2D</refentrytitle></citerefentry>,
                        <citerefentry><refentrytitle>glTexImage3D</refentrytitle></citerefentry>,
                        <citerefentry><refentrytitle>glCopyTexImage1D</refentrytitle></citerefentry>, or <citerefentry><refentrytitle>glCopyTexImage2D</refentrytitle></citerefentry>
                        with the <emphasis>level</emphasis> argument indicating the order of the mipmaps.
                        Level 0 is the original texture;
                        level
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: max ( n, m ): -->
                            <mml:mrow>
                                <mml:mi mathvariant="italic">max</mml:mi>
                                <mml:mo>&af;</mml:mo>
                                <mml:mfenced open="(" close=")">
                                    <mml:mi mathvariant="italic">n</mml:mi>
                                    <mml:mi mathvariant="italic">m</mml:mi>
                                </mml:mfenced>
                            </mml:mrow>
                        </mml:math></inlineequation>
                        is the final
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: 1  times  1: -->
                            <mml:mrow>
                                <mml:mn>1</mml:mn>
                                <mml:mo>&times;</mml:mo>
                                <mml:mn>1</mml:mn>
                            </mml:mrow>
                        </mml:math></inlineequation>
                        mipmap.
                    </para>
                    <para>
                        <parameter>params</parameter> supplies a function for minifying the texture as one of the
                        following:
                        <variablelist>
                            <varlistentry>
                                <term><constant>GL_NEAREST</constant></term>
                                <listitem>
                                    <para>
                                        Returns the value of the texture element that is nearest
                                        (in Manhattan distance)
                                        to the center of the pixel being textured.
                                    </para>
                                </listitem>
                            </varlistentry>
                            <varlistentry>
                                <term><constant>GL_LINEAR</constant></term>
                                <listitem>
                                    <para>
                                        Returns the weighted average of the four texture elements
                                        that are closest to the center of the pixel being textured.
                                        These can include border texture elements,
                                        depending on the values of <constant>GL_TEXTURE_WRAP_S</constant> and <constant>GL_TEXTURE_WRAP_T</constant>,
                                        and on the exact mapping.
                                    </para>
                                </listitem>
                            </varlistentry>
                            <varlistentry>
                                <term><constant>GL_NEAREST_MIPMAP_NEAREST</constant></term>
                                <listitem>
                                    <para>
                                        Chooses the mipmap that most closely matches the size of the pixel
                                        being textured and uses the <constant>GL_NEAREST</constant> criterion
                                        (the texture element nearest to the center of the pixel)
                                        to produce a texture value.
                                    </para>
                                </listitem>
                            </varlistentry>
                            <varlistentry>
                                <term><constant>GL_LINEAR_MIPMAP_NEAREST</constant></term>
                                <listitem>
                                    <para>
                                        Chooses the mipmap that most closely matches the size of the pixel
                                        being textured and uses the <constant>GL_LINEAR</constant> criterion
                                        (a weighted average of the four texture elements that are closest
                                        to the center of the pixel)
                                        to produce a texture value.
                                    </para>
                                </listitem>
                            </varlistentry>
                            <varlistentry>
                                <term><constant>GL_NEAREST_MIPMAP_LINEAR</constant></term>
                                <listitem>
                                    <para>
                                        Chooses the two mipmaps that most closely match the size of the pixel
                                        being textured and uses the <constant>GL_NEAREST</constant> criterion
                                        (the texture element nearest to the center of the pixel)
                                        to produce a texture value from each mipmap.
                                        The final texture value is a weighted average of those two values.
                                    </para>
                                </listitem>
                            </varlistentry>
                            <varlistentry>
                                <term><constant>GL_LINEAR_MIPMAP_LINEAR</constant></term>
                                <listitem>
                                    <para>
                                        Chooses the two mipmaps that most closely match the size of the pixel
                                        being textured and uses the <constant>GL_LINEAR</constant> criterion
                                        (a weighted average of the four texture elements that are closest
                                        to the center of the pixel)
                                        to produce a texture value from each mipmap.
                                        The final texture value is a weighted average of those two values.
                                    </para>
                                </listitem>
                            </varlistentry>
                        </variablelist>
                    </para>
                    <para>
                        As more texture elements are sampled in the minification process,
                        fewer aliasing artifacts will be apparent.
                        While the <constant>GL_NEAREST</constant> and <constant>GL_LINEAR</constant> minification functions can be
                        faster than the other four,
                        they sample only one or four texture elements to determine the texture value
                        of the pixel being rendered and can produce moire patterns
                        or ragged transitions.
                        The initial value of <constant>GL_TEXTURE_MIN_FILTER</constant> is
                        <constant>GL_NEAREST_MIPMAP_LINEAR</constant>.
                    </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term><constant>GL_TEXTURE_MAG_FILTER</constant></term>
                <listitem>
                    <para>
                        The texture magnification function is used when the pixel being textured
                        maps to an area less than or equal to one texture element.
                        It sets the texture magnification function to either <constant>GL_NEAREST</constant>
                        or <constant>GL_LINEAR</constant> (see below). <constant>GL_NEAREST</constant> is generally faster
                        than <constant>GL_LINEAR</constant>,
                        but it can produce textured images with sharper edges
                        because the transition between texture elements is not as smooth.
                        The initial value of <constant>GL_TEXTURE_MAG_FILTER</constant> is <constant>GL_LINEAR</constant>.
                        <variablelist>
                            <varlistentry>
                                <term><constant>GL_NEAREST</constant></term>
                                <listitem>
                                    <para>
                                        Returns the value of the texture element that is nearest
                                        (in Manhattan distance)
                                        to the center of the pixel being textured.
                                    </para>
                                </listitem>
                            </varlistentry>
                            <varlistentry>
                                <term><constant>GL_LINEAR</constant></term>
                                <listitem>
                                    <para>
                                        Returns the weighted average of the four texture elements
                                        that are closest to the center of the pixel being textured.
                                        These can include border texture elements,
                                        depending on the values of <constant>GL_TEXTURE_WRAP_S</constant> and <constant>GL_TEXTURE_WRAP_T</constant>,
                                        and on the exact mapping.
                                    </para>
                                </listitem>
                            </varlistentry>
                        </variablelist>
                    </para>
                </listitem>
            </varlistentry>
        </variablelist>
        <para>
        </para>
        <variablelist>
            <varlistentry>
                <term><constant>GL_TEXTURE_MIN_LOD</constant></term>
                <listitem>
                    <para>
                        Sets the minimum level-of-detail parameter.  This floating-point value
                        limits the selection of highest resolution mipmap (lowest mipmap
                        level). The initial value is -1000.
                    </para>
                </listitem>
            </varlistentry>
        </variablelist>
        <para>
        </para>
        <variablelist>
            <varlistentry>
                <term><constant>GL_TEXTURE_MAX_LOD</constant></term>
                <listitem>
                    <para>
                        Sets the maximum level-of-detail parameter.  This floating-point value
                        limits the selection of the lowest resolution mipmap (highest mipmap
                        level). The initial value is 1000.
                    </para>
                </listitem>
            </varlistentry>
        </variablelist>
        <para>
        </para>
        <variablelist>
            <varlistentry>
                <term><constant>GL_TEXTURE_WRAP_S</constant></term>
                <listitem>
                    <para>
                        Sets the wrap parameter for texture coordinate
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">s</mml:mi></mml:math></inlineequation>
                        to either <constant>GL_CLAMP_TO_EDGE</constant>, <constant>GL_MIRRORED_REPEAT</constant>,
                        <constant>GL_REPEAT</constant>, or <constant>GL_MIRROR_CLAMP_TO_EDGE</constant>.  <constant>GL_CLAMP_TO_BORDER</constant> causes the
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">s</mml:mi></mml:math></inlineequation>
                        coordinate to be clamped to the range
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: left [ {-1 over 2N}, 1 + {1 over 2N} right ]: -->
                            <mml:mfenced open="[" close="]">
                                <mml:mfenced open="" close="">
                                    <mml:mrow>
                                        <mml:mfrac>
                                            <mml:mn>-1</mml:mn>
                                            <mml:mrow>
                                                <mml:mn>2</mml:mn><mml:mi mathvariant="italic">N</mml:mi>
                                            </mml:mrow>
                                        </mml:mfrac>
                                    </mml:mrow>
                                </mml:mfenced>
                                <mml:mrow>
                                    <mml:mn>1</mml:mn>
                                    <mml:mo>+</mml:mo>
                                    <mml:mfenced open="" close="">
                                        <mml:mrow>
                                            <mml:mfrac>
                                                <mml:mn>1</mml:mn>
                                                <mml:mrow>
                                                    <mml:mn>2</mml:mn><mml:mi mathvariant="italic">N</mml:mi>
                                                </mml:mrow>
                                            </mml:mfrac>
                                        </mml:mrow>
                                    </mml:mfenced>
                                </mml:mrow>
                            </mml:mfenced>
                        </mml:math></inlineequation>,
                        where
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">N</mml:mi></mml:math></inlineequation>
                        is the size of the texture in the direction of
                        clamping.<constant>GL_CLAMP_TO_EDGE</constant> causes
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">s</mml:mi></mml:math></inlineequation>
                        coordinates to be clamped to the
                        range
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: left [ {1 over 2N}, 1 - {1 over 2N} right ]: -->
                            <mml:mfenced open="[" close="]">
                                <mml:mfenced open="" close="">
                                    <mml:mrow>
                                        <mml:mfrac>
                                            <mml:mn>1</mml:mn>
                                            <mml:mrow>
                                                <mml:mn>2</mml:mn><mml:mi mathvariant="italic">N</mml:mi>
                                            </mml:mrow>
                                        </mml:mfrac>
                                    </mml:mrow>
                                </mml:mfenced>
                                <mml:mrow>
                                    <mml:mn>1</mml:mn>
                                    <mml:mo>-</mml:mo>
                                    <mml:mfenced open="" close="">
                                        <mml:mrow>
                                            <mml:mfrac>
                                                <mml:mn>1</mml:mn>
                                                <mml:mrow>
                                                    <mml:mn>2</mml:mn><mml:mi mathvariant="italic">N</mml:mi>
                                                </mml:mrow>
                                            </mml:mfrac>
                                        </mml:mrow>
                                    </mml:mfenced>
                                </mml:mrow>
                            </mml:mfenced>
                        </mml:math></inlineequation>,
                        where
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">N</mml:mi></mml:math></inlineequation>
                        is the size
                        of the texture in the direction of clamping.  <constant>GL_REPEAT</constant> causes the
                        integer part of the
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">s</mml:mi></mml:math></inlineequation>
                        coordinate to be ignored; the GL uses only the
                        fractional part, thereby creating a repeating pattern.
                        <constant>GL_MIRRORED_REPEAT</constant> causes the
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">s</mml:mi></mml:math></inlineequation>
                        coordinate to be set to the
                        fractional part of the texture coordinate if the integer part of
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">s</mml:mi></mml:math></inlineequation>
                        is
                        even; if the integer part of
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">s</mml:mi></mml:math></inlineequation>
                        is odd, then the
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">s</mml:mi></mml:math></inlineequation>
                        texture coordinate is
                        set to
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: 1 - frac(s): -->
                            <mml:mrow>
                                <mml:mn>1</mml:mn>
                                <mml:mo>-</mml:mo>
                                <mml:mrow>
                                    <mml:mi mathvariant="italic">frac</mml:mi>
                                    <mml:mo>&af;</mml:mo>
                                    <mml:mfenced open="(" close=")">
                                        <mml:mi mathvariant="italic">s</mml:mi>
                                    </mml:mfenced>
                                </mml:mrow>
                            </mml:mrow>
                        </mml:math></inlineequation>,
                        where
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: frac(s): -->
                            <mml:mrow>
                                <mml:mi mathvariant="italic">frac</mml:mi>
                                <mml:mo>&af;</mml:mo>
                                <mml:mfenced open="(" close=")">
                                    <mml:mi mathvariant="italic">s</mml:mi>
                                </mml:mfenced>
                            </mml:mrow>
                        </mml:math></inlineequation>
                        represents the fractional part of
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">s</mml:mi></mml:math></inlineequation>.
                        <constant>GL_MIRROR_CLAMP_TO_EDGE</constant> causes the the <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">s</mml:mi></mml:math></inlineequation>
                        coordinate to be repeated as for <constant>GL_MIRRORED_REPEAT</constant> for one reptition of the texture,
                        at which point the coordinate to be clamped as in <constant>GL_CLAMP_TO_EDGE</constant>.
                        Initially, <constant>GL_TEXTURE_WRAP_S</constant> is set to <constant>GL_REPEAT</constant>.
                    </para>
                </listitem>
            </varlistentry>
        </variablelist>
        <para>
        </para>
        <variablelist>
            <varlistentry>
                <term><constant>GL_TEXTURE_WRAP_T</constant></term>
                <listitem>
                    <para>
                        Sets the wrap parameter for texture coordinate
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">t</mml:mi></mml:math></inlineequation>
                        to either <constant>GL_CLAMP_TO_EDGE</constant>, <constant>GL_MIRRORED_REPEAT</constant>,
                        <constant>GL_REPEAT</constant>, or <constant>GL_MIRROR_CLAMP_TO_EDGE</constant>.  See the discussion under <constant>GL_TEXTURE_WRAP_S</constant>.
                        Initially, <constant>GL_TEXTURE_WRAP_T</constant> is set to <constant>GL_REPEAT</constant>.
                    </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term><constant>GL_TEXTURE_WRAP_R</constant></term>
                <listitem>
                    <para>
                        Sets the wrap parameter for texture coordinate
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">r</mml:mi></mml:math></inlineequation>
                        to either <constant>GL_CLAMP_TO_EDGE</constant>, <constant>GL_MIRRORED_REPEAT</constant>,
                        <constant>GL_REPEAT</constant>, or <constant>GL_MIRROR_CLAMP_TO_EDGE</constant>.  See the discussion under <constant>GL_TEXTURE_WRAP_S</constant>.
                        Initially, <constant>GL_TEXTURE_WRAP_R</constant> is set to <constant>GL_REPEAT</constant>.
                    </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term><constant>GL_TEXTURE_BORDER_COLOR</constant></term>
                <listitem>
                    <para>
                        The data in <parameter>params</parameter> specifies four values that define the border values that
                        should be used for border texels. If a texel is sampled from the border of the texture, the
                        values of <constant>GL_TEXTURE_BORDER_COLOR</constant> are interpreted as an RGBA color to match the
                        texture's internal format and substituted for the non-existent texel data. If the texture contains depth
                        components, the first component of <constant>GL_TEXTURE_BORDER_COLOR</constant> is interpreted as a depth value.
                        The initial value is
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <mml:mrow>
                                <mml:mfenced open="(" close=")">
                                    <mml:mrow>
                                        <mml:mn>0.0</mml:mn>
                                        <mml:mo>,</mml:mo>
                                        <mml:mn>0.0</mml:mn>
                                        <mml:mo>,</mml:mo>
                                        <mml:mn>0.0</mml:mn>
                                        <mml:mo>,</mml:mo>
                                        <mml:mn>0.0</mml:mn>
                                    </mml:mrow>
                                </mml:mfenced>
                            </mml:mrow>
                        </mml:math></inlineequation>.
                    </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term><constant>GL_TEXTURE_COMPARE_MODE</constant></term>
                <listitem>
                    <para>
                        Specifies the texture comparison mode for currently bound textures.
                        That is, a texture whose internal format is <constant>GL_DEPTH_COMPONENT_*</constant>; see
                        <citerefentry><refentrytitle>glTexImage2D</refentrytitle></citerefentry>)
                        Permissible values are:
                        <variablelist>
                            <varlistentry>
                                <term><constant>GL_COMPARE_REF_TO_TEXTURE</constant></term>
                                <listitem>
                                    <para>
                                        Specifies that the interpolated and clamped
                                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">r</mml:mi></mml:math></inlineequation>
                                        texture coordinate should
                                        be compared to the value in the currently bound texture.  See the
                                        discussion of <constant>GL_TEXTURE_COMPARE_FUNC</constant> for details of how the comparison
                                        is evaluated.  The result of the comparison is assigned to the red channel.
                                    </para>
                                </listitem>
                            </varlistentry>
                            <varlistentry>
                                <term><constant>GL_NONE</constant></term>
                                <listitem>
                                    <para>
                                        Specifies that the red channel should be assigned the
                                        appropriate value from the currently bound texture.
                                    </para>
                                </listitem>
                            </varlistentry>
                        </variablelist>
                    </para>
                </listitem>
            </varlistentry>
            <varlistentry>
                <term><constant>GL_TEXTURE_COMPARE_FUNC</constant></term>
                <listitem>
                    <para>
                        Specifies the comparison operator used when <constant>GL_TEXTURE_COMPARE_MODE</constant> is
                        set to <constant>GL_COMPARE_REF_TO_TEXTURE</constant>.  Permissible values are:
                        <informaltable>
                            <tgroup cols="2" align="left">
                                <colspec/>
                                <colspec/>
                                <thead>
                                    <row>
                                        <entry>
                                            <emphasis role="bold"> Texture Comparison Function </emphasis>
                                        </entry>
                                        <entry>
                                            <emphasis role="bold"> Computed result </emphasis>
                                        </entry>
                                    </row>
                                </thead>
                                <tbody>
                                    <row>
                                        <entry>
                                        <constant>GL_LEQUAL</constant>
                                        </entry>
                                        <entry>
                                            <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                                                <!-- eqn: result  =  left {   cpile {1.0 above 0.0}        lpile {r <= {D sub t} above r > {D sub t}}: -->
                                                <mml:mrow>
                                                    <mml:mi mathvariant="italic">result</mml:mi>
                                                    <mml:mo>=</mml:mo>
                                                    <mml:mfenced open="{" close="">
                                                        <mml:mrow>
                                                            <mml:mtable>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mn>1.0</mml:mn>
                                                                </mml:mtd></mml:mtr>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mn>0.0</mml:mn>
                                                                </mml:mtd></mml:mtr>
                                                            </mml:mtable>
                                                            <mml:mo>&it;&nbsp;&nbsp;</mml:mo>
                                                            <mml:mtable>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mrow>
                                                                        <mml:mi mathvariant="italic">r</mml:mi>
                                                                        <mml:mo>&lt;=</mml:mo>
                                                                        <mml:mfenced open="" close="">
                                                                            <mml:msub><mml:mi mathvariant="italic">D</mml:mi>
                                                                            <mml:mi mathvariant="italic">t</mml:mi>
                                                                            </mml:msub>
                                                                        </mml:mfenced>
                                                                    </mml:mrow>
                                                                </mml:mtd></mml:mtr>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mrow>
                                                                        <mml:mi mathvariant="italic">r</mml:mi>
                                                                        <mml:mo>&gt;</mml:mo>
                                                                        <mml:mfenced open="" close="">
                                                                            <mml:msub><mml:mi mathvariant="italic">D</mml:mi>
                                                                            <mml:mi mathvariant="italic">t</mml:mi>
                                                                            </mml:msub>
                                                                        </mml:mfenced>
                                                                    </mml:mrow>
                                                                </mml:mtd></mml:mtr>
                                                            </mml:mtable>
                                                        </mml:mrow>
                                                    </mml:mfenced>
                                                </mml:mrow>
                                            </mml:math></inlineequation>
                                        </entry>
                                    </row>
                                    <row>
                                        <entry>
                                        <constant>GL_GEQUAL</constant>
                                        </entry>
                                        <entry>
                                            <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                                                <!-- eqn: result  =  left {   cpile {1.0 above 0.0}        lpile {r <= {D sub t} above r > {D sub t}}: -->
                                                <mml:mrow>
                                                    <mml:mi mathvariant="italic">result</mml:mi>
                                                    <mml:mo>=</mml:mo>
                                                    <mml:mfenced open="{" close="">
                                                        <mml:mrow>
                                                            <mml:mtable>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mn>1.0</mml:mn>
                                                                </mml:mtd></mml:mtr>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mn>0.0</mml:mn>
                                                                </mml:mtd></mml:mtr>
                                                            </mml:mtable>
                                                            <mml:mo>&it;&nbsp;&nbsp;</mml:mo>
                                                            <mml:mtable>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mrow>
                                                                        <mml:mi mathvariant="italic">r</mml:mi>
                                                                        <mml:mo>&gt;=</mml:mo>
                                                                        <mml:mfenced open="" close="">
                                                                            <mml:msub><mml:mi mathvariant="italic">D</mml:mi>
                                                                            <mml:mi mathvariant="italic">t</mml:mi>
                                                                            </mml:msub>
                                                                        </mml:mfenced>
                                                                    </mml:mrow>
                                                                </mml:mtd></mml:mtr>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mrow>
                                                                        <mml:mi mathvariant="italic">r</mml:mi>
                                                                        <mml:mo>&lt;</mml:mo>
                                                                        <mml:mfenced open="" close="">
                                                                            <mml:msub><mml:mi mathvariant="italic">D</mml:mi>
                                                                            <mml:mi mathvariant="italic">t</mml:mi>
                                                                            </mml:msub>
                                                                        </mml:mfenced>
                                                                    </mml:mrow>
                                                                </mml:mtd></mml:mtr>
                                                            </mml:mtable>
                                                        </mml:mrow>
                                                    </mml:mfenced>
                                                </mml:mrow>
                                            </mml:math></inlineequation>
                                        </entry>
                                    </row>
                                    <row>
                                        <entry>
                                        <constant>GL_LESS</constant>
                                        </entry>
                                        <entry>
                                            <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                                                <!-- eqn: result  =  left {   cpile {1.0 above 0.0}        lpile {r <= {D sub t} above r > {D sub t}}: -->
                                                <mml:mrow>
                                                    <mml:mi mathvariant="italic">result</mml:mi>
                                                    <mml:mo>=</mml:mo>
                                                    <mml:mfenced open="{" close="">
                                                        <mml:mrow>
                                                            <mml:mtable>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mn>1.0</mml:mn>
                                                                </mml:mtd></mml:mtr>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mn>0.0</mml:mn>
                                                                </mml:mtd></mml:mtr>
                                                            </mml:mtable>
                                                            <mml:mo>&it;&nbsp;&nbsp;</mml:mo>
                                                            <mml:mtable>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mrow>
                                                                        <mml:mi mathvariant="italic">r</mml:mi>
                                                                        <mml:mo>&lt;</mml:mo>
                                                                        <mml:mfenced open="" close="">
                                                                            <mml:msub><mml:mi mathvariant="italic">D</mml:mi>
                                                                            <mml:mi mathvariant="italic">t</mml:mi>
                                                                            </mml:msub>
                                                                        </mml:mfenced>
                                                                    </mml:mrow>
                                                                </mml:mtd></mml:mtr>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mrow>
                                                                        <mml:mi mathvariant="italic">r</mml:mi>
                                                                        <mml:mo>&gt;=</mml:mo>
                                                                        <mml:mfenced open="" close="">
                                                                            <mml:msub><mml:mi mathvariant="italic">D</mml:mi>
                                                                            <mml:mi mathvariant="italic">t</mml:mi>
                                                                            </mml:msub>
                                                                        </mml:mfenced>
                                                                    </mml:mrow>
                                                                </mml:mtd></mml:mtr>
                                                            </mml:mtable>
                                                        </mml:mrow>
                                                    </mml:mfenced>
                                                </mml:mrow>
                                            </mml:math></inlineequation>
                                        </entry>
                                    </row>
                                    <row>
                                        <entry>
                                        <constant>GL_GREATER</constant>
                                        </entry>
                                        <entry>
                                            <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                                                <!-- eqn: result  =  left {   cpile {1.0 above 0.0}        lpile {r <= {D sub t} above r > {D sub t}}: -->
                                                <mml:mrow>
                                                    <mml:mi mathvariant="italic">result</mml:mi>
                                                    <mml:mo>=</mml:mo>
                                                    <mml:mfenced open="{" close="">
                                                        <mml:mrow>
                                                            <mml:mtable>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mn>1.0</mml:mn>
                                                                </mml:mtd></mml:mtr>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mn>0.0</mml:mn>
                                                                </mml:mtd></mml:mtr>
                                                            </mml:mtable>
                                                            <mml:mo>&it;&nbsp;&nbsp;</mml:mo>
                                                            <mml:mtable>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mrow>
                                                                        <mml:mi mathvariant="italic">r</mml:mi>
                                                                        <mml:mo>&gt;</mml:mo>
                                                                        <mml:mfenced open="" close="">
                                                                            <mml:msub><mml:mi mathvariant="italic">D</mml:mi>
                                                                            <mml:mi mathvariant="italic">t</mml:mi>
                                                                            </mml:msub>
                                                                        </mml:mfenced>
                                                                    </mml:mrow>
                                                                </mml:mtd></mml:mtr>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mrow>
                                                                        <mml:mi mathvariant="italic">r</mml:mi>
                                                                        <mml:mo>&lt;=</mml:mo>
                                                                        <mml:mfenced open="" close="">
                                                                            <mml:msub><mml:mi mathvariant="italic">D</mml:mi>
                                                                            <mml:mi mathvariant="italic">t</mml:mi>
                                                                            </mml:msub>
                                                                        </mml:mfenced>
                                                                    </mml:mrow>
                                                                </mml:mtd></mml:mtr>
                                                            </mml:mtable>
                                                        </mml:mrow>
                                                    </mml:mfenced>
                                                </mml:mrow>
                                            </mml:math></inlineequation>
                                        </entry>
                                    </row>
                                    <row>
                                        <entry>
                                        <constant>GL_EQUAL</constant>
                                        </entry>
                                        <entry>
                                            <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                                                <!-- eqn: result  =  left {   cpile {1.0 above 0.0}        lpile {r <= {D sub t} above r > {D sub t}}: -->
                                                <mml:mrow>
                                                    <mml:mi mathvariant="italic">result</mml:mi>
                                                    <mml:mo>=</mml:mo>
                                                    <mml:mfenced open="{" close="">
                                                        <mml:mrow>
                                                            <mml:mtable>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mn>1.0</mml:mn>
                                                                </mml:mtd></mml:mtr>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mn>0.0</mml:mn>
                                                                </mml:mtd></mml:mtr>
                                                            </mml:mtable>
                                                            <mml:mo>&it;&nbsp;&nbsp;</mml:mo>
                                                            <mml:mtable>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mrow>
                                                                        <mml:mi mathvariant="italic">r</mml:mi>
                                                                        <mml:mo>=</mml:mo>
                                                                        <mml:mfenced open="" close="">
                                                                            <mml:msub><mml:mi mathvariant="italic">D</mml:mi>
                                                                            <mml:mi mathvariant="italic">t</mml:mi>
                                                                            </mml:msub>
                                                                        </mml:mfenced>
                                                                    </mml:mrow>
                                                                </mml:mtd></mml:mtr>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mrow>
                                                                        <mml:mi mathvariant="italic">r</mml:mi>
                                                                        <mml:mo>&ne;</mml:mo>
                                                                        <mml:mfenced open="" close="">
                                                                            <mml:msub><mml:mi mathvariant="italic">D</mml:mi>
                                                                            <mml:mi mathvariant="italic">t</mml:mi>
                                                                            </mml:msub>
                                                                        </mml:mfenced>
                                                                    </mml:mrow>
                                                                </mml:mtd></mml:mtr>
                                                            </mml:mtable>
                                                        </mml:mrow>
                                                    </mml:mfenced>
                                                </mml:mrow>
                                            </mml:math></inlineequation>
                                        </entry>
                                    </row>
                                    <row>
                                        <entry>
                                        <constant>GL_NOTEQUAL</constant>
                                        </entry>
                                        <entry>
                                            <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                                                <!-- eqn: result  =  left {   cpile {1.0 above 0.0}        lpile {r <= {D sub t} above r > {D sub t}}: -->
                                                <mml:mrow>
                                                    <mml:mi mathvariant="italic">result</mml:mi>
                                                    <mml:mo>=</mml:mo>
                                                    <mml:mfenced open="{" close="">
                                                        <mml:mrow>
                                                            <mml:mtable>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mn>1.0</mml:mn>
                                                                </mml:mtd></mml:mtr>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mn>0.0</mml:mn>
                                                                </mml:mtd></mml:mtr>
                                                            </mml:mtable>
                                                            <mml:mo>&it;&nbsp;&nbsp;</mml:mo>
                                                            <mml:mtable>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mrow>
                                                                        <mml:mi mathvariant="italic">r</mml:mi>
                                                                        <mml:mo>&ne;</mml:mo>
                                                                        <mml:mfenced open="" close="">
                                                                            <mml:msub><mml:mi mathvariant="italic">D</mml:mi>
                                                                            <mml:mi mathvariant="italic">t</mml:mi>
                                                                            </mml:msub>
                                                                        </mml:mfenced>
                                                                    </mml:mrow>
                                                                </mml:mtd></mml:mtr>
                                                                <mml:mtr><mml:mtd>
                                                                    <mml:mrow>
                                                                        <mml:mi mathvariant="italic">r</mml:mi>
                                                                        <mml:mo>=</mml:mo>
                                                                        <mml:mfenced open="" close="">
                                                                            <mml:msub><mml:mi mathvariant="italic">D</mml:mi>
                                                                            <mml:mi mathvariant="italic">t</mml:mi>
                                                                            </mml:msub>
                                                                        </mml:mfenced>
                                                                    </mml:mrow>
                                                                </mml:mtd></mml:mtr>
                                                            </mml:mtable>
                                                        </mml:mrow>
                                                    </mml:mfenced>
                                                </mml:mrow>
                                            </mml:math></inlineequation>
                                        </entry>
                                    </row>
                                    <row>
                                        <entry>
                                        <constant>GL_ALWAYS</constant>
                                        </entry>
                                        <entry>
                                            <inlineequation>
                                                <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                                                <mml:mrow>
                                                    <mml:mi mathvariant="italic">result</mml:mi>
                                                    <mml:mo>=</mml:mo>
                                                    <mml:mi>1.0</mml:mi>
                                                </mml:mrow>
                                                </mml:math>
                                            </inlineequation>
                                        </entry>
                                    </row>
                                    <row>
                                        <entry>
                                        <constant>GL_NEVER</constant>
                                        </entry>
                                        <entry>
                                            <inlineequation>
                                                <mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                                                <mml:mrow>
                                                    <mml:mi mathvariant="italic">result</mml:mi>
                                                    <mml:mo>=</mml:mo>
                                                    <mml:mi>0.0</mml:mi>
                                                </mml:mrow>
                                                </mml:math>
                                            </inlineequation>
                                        </entry>
                                    </row>
                                </tbody>
                            </tgroup>
                        </informaltable>
                        where <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">r</mml:mi></mml:math></inlineequation>
                        is the current interpolated texture coordinate, and
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: D sub t: -->
                            <mml:msub><mml:mi mathvariant="italic">D</mml:mi>
                            <mml:mi mathvariant="italic">t</mml:mi>
                            </mml:msub>
                        </mml:math></inlineequation>
                        is the texture value sampled from the currently bound texture.
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll"><mml:mi mathvariant="italic">result</mml:mi></mml:math></inlineequation>
                        is assigned to
                        <inlineequation><mml:math xmlns:mml="http://www.w3.org/1998/Math/MathML" overflow="scroll">
                            <!-- eqn: R sub t: -->
                            <mml:msub><mml:mi mathvariant="italic">R</mml:mi>
                            <mml:mi mathvariant="italic">t</mml:mi>
                            </mml:msub>
                        </mml:math></inlineequation>.
                    </para>
                </listitem>
            </varlistentry>
        </variablelist>
    </refsect1>
    <refsect1 xml:id="notes"><title>Notes</title>
        <para>
            <function>glSamplerParameter</function> is available only if the GL version is 3.3 or higher.
        </para>
        <para>
            If a sampler object is bound to a texture unit and that unit is used to sample from a texture, the parameters in the sampler
            are used to sample from the texture, rather than the equivalent parameters in the texture object bound to that unit. This
            introduces the possibility of sampling from the same texture object with different sets of sampler state, which may lead to
            a condition where a texture is <emphasis>incomplete</emphasis> with respect to one sampler object and not with respect to
            another. Thus, completeness can be considered a function of a sampler object and a texture object bound to a single
            texture unit, rather than a property of the texture object itself.
        </para>
        <para>
            <constant>GL_MIRROR_CLAMP_TO_EDGE</constant> is available only if the GL version is 4.4 or greater.
        </para>
    </refsect1>
    <refsect1 xml:id="errors"><title>Errors</title>
        <para>
            <constant>GL_INVALID_VALUE</constant> is generated if <parameter>sampler</parameter> is not the name of a sampler object previously
            returned from a call to <citerefentry><refentrytitle>glGenSamplers</refentrytitle></citerefentry>.
        </para>
        <para>
            <constant>GL_INVALID_ENUM</constant> is generated if <parameter>params</parameter> should have a defined
            constant value (based on the value of <parameter>pname</parameter>) and does not.
        </para>
    </refsect1>
    <refsect1 xml:id="associatedgets"><title>Associated Gets</title>
        <para>
            <citerefentry><refentrytitle>glGetSamplerParameter</refentrytitle></citerefentry>
        </para>
    </refsect1>
    <refsect1 xml:id="versions"><title>Version Support</title>
        <informaltable>
            <tgroup cols="13" align="left">
                <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="apifunchead.xml" xpointer="xpointer(/*/*)"/>
                <tbody>
                    <row>
                        <entry><function>glSamplerParameterIiv</function></entry>
                        <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="apiversion.xml" xpointer="xpointer(/*/*[@role='32']/*)"/>
                    </row>
                    <row>
                        <entry><function>glSamplerParameterIuiv</function></entry>
                        <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="apiversion.xml" xpointer="xpointer(/*/*[@role='32']/*)"/>
                    </row>
                    <row>
                        <entry><function>glSamplerParameterf</function></entry>
                        <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="apiversion.xml" xpointer="xpointer(/*/*[@role='32']/*)"/>
                    </row>
                    <row>
                        <entry><function>glSamplerParameterfv</function></entry>
                        <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="apiversion.xml" xpointer="xpointer(/*/*[@role='32']/*)"/>
                    </row>
                    <row>
                        <entry><function>glSamplerParameteri</function></entry>
                        <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="apiversion.xml" xpointer="xpointer(/*/*[@role='32']/*)"/>
                    </row>
                    <row>
                        <entry><function>glSamplerParameteriv</function></entry>
                        <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="apiversion.xml" xpointer="xpointer(/*/*[@role='32']/*)"/>
                    </row>
                </tbody>
            </tgroup>
        </informaltable>
    </refsect1>
    <refsect1 xml:id="seealso"><title>See Also</title>
        <para>
            <citerefentry><refentrytitle>glGenSamplers</refentrytitle></citerefentry>,
            <citerefentry><refentrytitle>glBindSampler</refentrytitle></citerefentry>,
            <citerefentry><refentrytitle>glDeleteSamplers</refentrytitle></citerefentry>,
            <citerefentry><refentrytitle>glIsSampler</refentrytitle></citerefentry>,
            <citerefentry><refentrytitle>glBindTexture</refentrytitle></citerefentry>,
            <citerefentry><refentrytitle>glTexParameter</refentrytitle></citerefentry>
        </para>
    </refsect1>
    <refsect1 xml:id="Copyright"><title>Copyright</title>
        <para>
            Copyright <trademark class="copyright"/> 2010-2014 Khronos Group.
            This material may be distributed subject to the terms and conditions set forth in
            the Open Publication License, v 1.0, 8 June 1999.
            <link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://opencontent.org/openpub/">http://opencontent.org/openpub/</link>.
        </para>
    </refsect1>
</refentry>