summaryrefslogtreecommitdiff
path: root/src/glx/apple/gen_funcs.tcl
blob: 1392c155a84dc26947570ed5b4212857a1fafb6d (plain)
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
package require Tcl 8.5

#input is specs/gl.spec

set license {
/*
 Copyright (c) 2008, 2009 Apple Inc.
 
 Permission is hereby granted, free of charge, to any person
 obtaining a copy of this software and associated documentation files
 (the "Software"), to deal in the Software without restriction,
 including without limitation the rights to use, copy, modify, merge,
 publish, distribute, sublicense, and/or sell copies of the Software,
 and to permit persons to whom the Software is furnished to do so,
 subject to the following conditions:
 
 The above copyright notice and this permission notice shall be
 included in all copies or substantial portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 NONINFRINGEMENT.  IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT
 HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 DEALINGS IN THE SOFTWARE.
 
 Except as contained in this notice, the name(s) of the above
 copyright holders shall not be used in advertising or otherwise to
 promote the sale, use or other dealings in this Software without
 prior written authorization.
*/
}


proc extension name {
    global extensions

    set extensions($name) 1
}

proc alias {from to} {
    global aliases
    
    set aliases($from) $to
}

proc promoted name {
    global promoted

    set promoted($name) 1
}

proc noop name {
    global noop
    
    set noop($name) 1
}

set dir [file dirname [info script]]

source [file join $dir GL_extensions]
source [file join $dir GL_aliases]
source [file join $dir GL_promoted]
source [file join $dir GL_noop]

proc is-extension-supported? name {
    global extensions

    return [info exists extensions($name)]
}

# This is going to need to be updated for future OpenGL versions:
#    cat specs/gl.tm  | grep -v '^#' | awk -F, '{sub(/[ \t]+/, ""); print "    "$1 " \"" $4 "\""}'
#    then change void from "*" to "void"
#
# TextureComponentCount is GLenum in SL for everything
# It is GLint in mesa, but is GLenum for glTexImage3DEXT
array set typemap {
    AccumOp "GLenum"
    AlphaFunction "GLenum"
    AttribMask "GLbitfield"
    BeginMode "GLenum"
    BinormalPointerTypeEXT "GLenum"
    BlendEquationMode "GLenum"
    BlendEquationModeEXT "GLenum"
    BlendFuncSeparateParameterEXT "GLenum"
    BlendingFactorDest "GLenum"
    BlendingFactorSrc "GLenum"
    Boolean "GLboolean"
    BooleanPointer "GLboolean*"
    Char "GLchar"
    CharPointer "GLchar*"
    CheckedFloat32 "GLfloat"
    CheckedInt32 "GLint"
    ClampColorTargetARB "GLenum"
    ClampColorModeARB "GLenum"
    ClampedColorF "GLclampf"
    ClampedFloat32 "GLclampf"
    ClampedFloat64 "GLclampd"
    ClampedStencilValue "GLint"
    ClearBufferMask "GLbitfield"
    ClientAttribMask "GLbitfield"
    ClipPlaneName "GLenum"
    ColorB "GLbyte"
    ColorD "GLdouble"
    ColorF "GLfloat"
    ColorI "GLint"
    ColorIndexValueD "GLdouble"
    ColorIndexValueF "GLfloat"
    ColorIndexValueI "GLint"
    ColorIndexValueS "GLshort"
    ColorIndexValueUB "GLubyte"
    ColorMaterialParameter "GLenum"
    ColorPointerType "GLenum"
    ColorS "GLshort"
    ColorTableParameterPName "GLenum"
    ColorTableParameterPNameSGI "GLenum"
    ColorTableTarget "GLenum"
    ColorTableTargetSGI "GLenum"
    ColorUB "GLubyte"
    ColorUI "GLuint"
    ColorUS "GLushort"
    CombinerBiasNV "GLenum"
    CombinerComponentUsageNV "GLenum"
    CombinerMappingNV "GLenum"
    CombinerParameterNV "GLenum"
    CombinerPortionNV "GLenum"
    CombinerRegisterNV "GLenum"
    CombinerScaleNV "GLenum"
    CombinerStageNV "GLenum"
    CombinerVariableNV "GLenum"
    CompressedTextureARB "GLvoid"
    ControlPointNV "GLvoid"
    ControlPointTypeNV "GLenum"
    ConvolutionParameter "GLenum"
    ConvolutionParameterEXT "GLenum"
    ConvolutionTarget "GLenum"
    ConvolutionTargetEXT "GLenum"
    CoordD "GLdouble"
    CoordF "GLfloat"
    CoordI "GLint"
    CoordS "GLshort"
    CullFaceMode "GLenum"
    CullParameterEXT "GLenum"
    DepthFunction "GLenum"
    DrawBufferMode "GLenum"
    DrawBufferName "GLint"
    DrawElementsType "GLenum"
    ElementPointerTypeATI "GLenum"
    EnableCap "GLenum"
    ErrorCode "GLenum"
    EvalMapsModeNV "GLenum"
    EvalTargetNV "GLenum"
    FeedbackElement "GLfloat"
    FeedbackType "GLenum"
    FenceNV "GLuint"
    FenceConditionNV "GLenum"
    FenceParameterNameNV "GLenum"
    FfdMaskSGIX "GLbitfield"
    FfdTargetSGIX "GLenum"
    Float32 "GLfloat"
    Float32Pointer "GLfloat*"
    Float64 "GLdouble"
    Float64Pointer "GLdouble*"
    FogParameter "GLenum"
    FogPointerTypeEXT "GLenum"
    FogPointerTypeIBM "GLenum"
    FragmentLightModelParameterSGIX "GLenum"
    FragmentLightNameSGIX "GLenum"
    FragmentLightParameterSGIX "GLenum"
    FramebufferAttachment "GLenum"
    FramebufferTarget "GLenum"
    FrontFaceDirection "GLenum"
    FunctionPointer "_GLfuncptr"
    GetColorTableParameterPName "GLenum"
    GetColorTableParameterPNameSGI "GLenum"
    GetConvolutionParameterPName "GLenum"
    GetHistogramParameterPName "GLenum"
    GetHistogramParameterPNameEXT "GLenum"
    GetMapQuery "GLenum"
    GetMinmaxParameterPName "GLenum"
    GetMinmaxParameterPNameEXT "GLenum"
    GetPName "GLenum"
    GetPointervPName "GLenum"
    GetTextureParameter "GLenum"
    HintMode "GLenum"
    HintTarget "GLenum"
    HintTargetPGI "GLenum"
    HistogramTarget "GLenum"
    HistogramTargetEXT "GLenum"
    IglooFunctionSelectSGIX "GLenum"
    IglooParameterSGIX "GLvoid"
    ImageTransformPNameHP "GLenum"
    ImageTransformTargetHP "GLenum"
    IndexFunctionEXT "GLenum"
    IndexMaterialParameterEXT "GLenum"
    IndexPointerType "GLenum"
    Int16 "GLshort"
    Int32 "GLint"
    Int8 "GLbyte"
    InterleavedArrayFormat "GLenum"
    LightEnvParameterSGIX "GLenum"
    LightModelParameter "GLenum"
    LightName "GLenum"
    LightParameter "GLenum"
    LightTextureModeEXT "GLenum"
    LightTexturePNameEXT "GLenum"
    LineStipple "GLushort"
    List "GLuint"
    ListMode "GLenum"
    ListNameType "GLenum"
    ListParameterName "GLenum"
    LogicOp "GLenum"
    MapAttribParameterNV "GLenum"
    MapParameterNV "GLenum"
    MapTarget "GLenum"
    MapTargetNV "GLenum"
    MapTypeNV "GLenum"
    MaskedColorIndexValueF "GLfloat"
    MaskedColorIndexValueI "GLuint"
    MaskedStencilValue "GLuint"
    MaterialFace "GLenum"
    MaterialParameter "GLenum"
    MatrixIndexPointerTypeARB "GLenum"
    MatrixMode "GLenum"
    MatrixTransformNV "GLenum"
    MeshMode1 "GLenum"
    MeshMode2 "GLenum"
    MinmaxTarget "GLenum"
    MinmaxTargetEXT "GLenum"
    NormalPointerType "GLenum"
    NurbsCallback "GLenum"
    NurbsObj "GLUnurbs*"
    NurbsProperty "GLenum"
    NurbsTrim "GLenum"
    OcclusionQueryParameterNameNV "GLenum"
    PixelCopyType "GLenum"
    PixelFormat "GLenum"
    PixelInternalFormat "GLenum"
    PixelMap "GLenum"
    PixelStoreParameter "GLenum"
    PixelTexGenModeSGIX "GLenum"
    PixelTexGenParameterNameSGIS "GLenum"
    PixelTransferParameter "GLenum"
    PixelTransformPNameEXT "GLenum"
    PixelTransformTargetEXT "GLenum"
    PixelType "GLenum"
    PointParameterNameARB "GLenum"
    PolygonMode "GLenum"
    ProgramNV "GLuint"
    ProgramCharacterNV "GLubyte"
    ProgramParameterNV "GLenum"
    ProgramParameterPName "GLenum"
    QuadricCallback "GLenum"
    QuadricDrawStyle "GLenum"
    QuadricNormal "GLenum"
    QuadricObj "GLUquadric*"
    QuadricOrientation "GLenum"
    ReadBufferMode "GLenum"
    RenderbufferTarget "GLenum"
    RenderingMode "GLenum"
    ReplacementCodeSUN "GLuint"
    ReplacementCodeTypeSUN "GLenum"
    SamplePassARB "GLenum"
    SamplePatternEXT "GLenum"
    SamplePatternSGIS "GLenum"
    SecondaryColorPointerTypeIBM "GLenum"
    SelectName "GLuint"
    SeparableTarget "GLenum"
    SeparableTargetEXT "GLenum"
    ShadingModel "GLenum"
    SizeI "GLsizei"
    SpriteParameterNameSGIX "GLenum"
    StencilFunction "GLenum"
    StencilFaceDirection "GLenum"
    StencilOp "GLenum"
    StencilValue "GLint"
    String "const GLubyte *"
    StringName "GLenum"
    TangentPointerTypeEXT "GLenum"
    TessCallback "GLenum"
    TessContour "GLenum"
    TessProperty "GLenum"
    TesselatorObj "GLUtesselator*"
    TexCoordPointerType "GLenum"
    Texture "GLuint"
    TextureComponentCount "GLint"
    TextureCoordName "GLenum"
    TextureEnvParameter "GLenum"
    TextureEnvTarget "GLenum"
    TextureFilterSGIS "GLenum"
    TextureGenParameter "GLenum"
    TextureNormalModeEXT "GLenum"
    TextureParameterName "GLenum"
    TextureTarget "GLenum"
    TextureUnit "GLenum"
    UInt16 "GLushort"
    UInt32 "GLuint"
    UInt8 "GLubyte"
    VertexAttribEnum "GLenum"
    VertexAttribEnumNV "GLenum"
    VertexAttribPointerTypeNV "GLenum"
    VertexPointerType "GLenum"
    VertexWeightPointerTypeEXT "GLenum"
    Void "GLvoid"
    VoidPointer "GLvoid*"
    ConstVoidPointer "GLvoid* const"
    WeightPointerTypeARB "GLenum"
    WinCoord "GLint"
    void "void"
    ArrayObjectPNameATI "GLenum"
    ArrayObjectUsageATI "GLenum"
    ConstFloat32 "GLfloat"
    ConstInt32 "GLint"
    ConstUInt32 "GLuint"
    ConstVoid "GLvoid"
    DataTypeEXT "GLenum"
    FragmentOpATI "GLenum"
    GetTexBumpParameterATI "GLenum"
    GetVariantValueEXT "GLenum"
    ParameterRangeEXT "GLenum"
    PreserveModeATI "GLenum"
    ProgramFormatARB "GLenum"
    ProgramTargetARB "GLenum"
    ProgramTarget "GLenum"
    ProgramPropertyARB "GLenum"
    ProgramStringPropertyARB "GLenum"
    ScalarType "GLenum"
    SwizzleOpATI "GLenum"
    TexBumpParameterATI "GLenum"
    VariantCapEXT "GLenum"
    VertexAttribPointerPropertyARB "GLenum"
    VertexAttribPointerTypeARB "GLenum"
    VertexAttribPropertyARB "GLenum"
    VertexShaderCoordOutEXT "GLenum"
    VertexShaderOpEXT "GLenum"
    VertexShaderParameterEXT "GLenum"
    VertexShaderStorageTypeEXT "GLenum"
    VertexShaderTextureUnitParameter "GLenum"
    VertexShaderWriteMaskEXT "GLenum"
    VertexStreamATI "GLenum"
    PNTrianglesPNameATI "GLenum"
    BufferOffset "GLintptr"
    BufferSize "GLsizeiptr"
    BufferAccessARB "GLenum"
    BufferOffsetARB "GLintptrARB"
    BufferPNameARB "GLenum"
    BufferPointerNameARB "GLenum"
    BufferSizeARB "GLsizeiptrARB"
    BufferTargetARB "GLenum"
    BufferUsageARB "GLenum"
    ObjectTypeAPPLE "GLenum"
    VertexArrayPNameAPPLE "GLenum"
    DrawBufferModeATI "GLenum"
    Half16NV "GLhalfNV"
    PixelDataRangeTargetNV "GLenum"
    TypeEnum "GLenum"
    GLbitfield "GLbitfield"
    GLenum "GLenum"
    Int64 "GLint64"
    UInt64 "GLuint64"
    handleARB "GLhandleARB"
    charARB "GLcharARB"
    charPointerARB "GLcharARB*"
    sync "GLsync"
    Int64EXT "GLint64EXT"
    UInt64EXT "GLuint64EXT"
    FramebufferAttachment "GLenum"
    FramebufferAttachmentParameterName "GLenum"
    Framebuffer "GLuint"
    FramebufferStatus "GLenum"
    FramebufferTarget "GLenum"
    GetFramebufferParameter "GLenum"
    Intptr "GLintptr"
    ProgramFormat "GLenum"
    ProgramProperty "GLenum"
    ProgramStringProperty "GLenum"
    ProgramTarget "GLenum"
    Renderbuffer "GLuint"
    RenderbufferParameterName "GLenum"
    Sizeiptr "GLsizeiptr"
    TextureInternalFormat "GLenum"
    VertexBufferObjectAccess "GLenum"
    VertexBufferObjectParameter "GLenum"
    VertexBufferObjectUsage "GLenum"
    BufferAccessMask "GLbitfield"
    GetMultisamplePNameNV "GLenum"
    SampleMaskNV "GLbitfield"
}

proc psplit s {
    set r [list]
    set token ""

    foreach c [split $s ""] {
	if {[string is space -strict $c]} {
	    if {[string length $token]} {
		lappend r $token
	    }
	    set token ""
	} else {
	    append token $c
	}
    }

    if {[string length $token]} {
	lappend r $token
    }

    return $r
}

proc is-extension? str {
    #Check if the trailing name of the function is NV, or EXT, and so on.
    
    if {[string is upper [string index $str end]]
	&& [string is upper [string index $str end-1]]} {
	return 1
    } 

    return 0
}


proc parse {data arvar} {
    upvar 1 $arvar ar

    set state ""
    set name ""

    foreach line [split $data \n] {
	if {"attr" eq $state} {
	    if {[string match "\t*" $line]} {
		set plist [psplit [lindex [split $line "#"] 0]]
		#puts PLIST:$plist
		set master $ar($name)
		set param [dict get $master parameters]

		switch -- [llength $plist] {
		    1 {
			dict set master [lindex $plist 0] ""
		    }

		    2 {
			#standard key, value pair
			set key [lindex $plist 0]
			set value [lindex $plist 1]

			dict set master $key $value
		    }

		    default {
			set key [lindex $plist 0]

			#puts PLIST:$plist

			if {"param" eq $key} {
			    lappend param [list [lindex $plist 1] [lindex $plist 2] [lindex $plist 3] [lindex $plist 4]]
			} else {
			    dict set master $key [lrange $plist 1 end]
			}
		    }		    
		}
		
		dict set master parameters $param

		set ar($name) $master
	    } else {
		set state ""
	    }
	} elseif {[regexp {^([A-Z_a-z0-9]+)\((.*)\)\S*} $line all name argv] > 0} {
	    #puts "MATCH:$name ARGV:$argv"
	    
	    #Trim the spaces in the elements.
	    set newargv [list]
	    foreach a [split $argv ,] {
		lappend newargv [string trim $a]
	    }
	    

	    set d [dict create name $name arguments $newargv \
		       parameters [dict create]]
	    set ar($name) $d
	    set state attr
	} 
    }
}

#This returns true if the category is valid for an extension.
proc is-valid-category? c {
    set clist [list display-list drawing drawing-control feedback framebuf misc modeling pixel-op pixel-rw state-req xform VERSION_1_0 VERSION_1_0_DEPRECATED VERSION_1_1 VERSION_1_1_DEPRECATED VERSION_1_2 VERSION_1_2_DEPRECATED VERSION_1_3 VERSION_1_3_DEPRECATED VERSION_1_4 VERSION_1_4_DEPRECATED VERSION_1_5 VERSION_2_0 VERSION_2_1 VERSION_3_0 VERSION_3_0_DEPRECATED VERSION_3_1 VERSION_3_2]

    set result [expr {$c in $clist}]


    if {!$result} {
	set result [is-extension-supported? $c]
    }

    return $result
}

proc translate-parameters {func parameters} {
    global typemap

    set newparams [list]

    foreach p $parameters {
	set var [lindex $p 0]
	
	set ptype [lindex $p 1]
	
	if {![info exists typemap($ptype)]} {
	    set ::missingTypes($ptype) $func
	    continue
	}
	
	set type $typemap($ptype)
	
	if {"array" eq [lindex $p 3]} {
	    if {"in" eq [lindex $p 2]} {
		set final_type "const $type *"
	    } else {
		set final_type "$type *"
	    }
	} else {
	    set final_type $type
	}
	    
	lappend newparams [list $final_type $var]
    }
 
    return $newparams
}

proc api-new-entry {info func} {
    global typemap

    set master [dict create]
    set rettype [dict get $info return]
    
    if {![info exists typemap($rettype)]} {
	set ::missingTypes($rettype) $func
    } else {
	dict set master return $typemap($rettype)
    }
    
    dict set master parameters [translate-parameters $func \
				    [dict get $info parameters]]

    return $master
}

proc main {argc argv} {
    global extensions typemap aliases promoted noop

    set fd [open [lindex $argv 0] r]
    set data [read $fd]
    close $fd
  
    array set ar {}
    
    parse $data ar
    
    array set newapi {}
    array set missingTypes {}

    foreach {key value} [array get ar] {
	puts "KEY:$key VALUE:$value"

	set category [dict get $value category]
	
	#Invalidate any of the extensions and things not in the spec we support.
	set valid [is-valid-category? $category]
	puts VALID:$valid
	
	if {!$valid} {
	   continue
	}

	puts "VALID:$key"

	if {"BlitFramebuffer" eq $key} {
	    #This was promoted to an ARB extension after Leopard it seems.
	    set key BlitFramebufferEXT
	}

	if {"ARB_framebuffer_object" eq $category} {
	    #This wasn't an ARB extension in Leopard either.
	    if {![string match *EXT $key]} {
		append key EXT
	    }
	}

	set newapi($key) [api-new-entry $value $key]
    }

    #Now iterate and support as many aliases as we can for promoted functions
    #based on if the newapi contains the function.
    foreach {func value} [array get ar] {
	if {![info exists promoted([dict get $value category])]} {
	    continue
	}

	if {[dict exists $value alias]} {
	    #We have an alias.  Let's see if we have the implementation.
	    set alias [dict get $value alias]

	    if {[info exists newapi($alias)] && ![info exists newapi($func)]} {
		#We have an implementing function available.
		puts "HAVE:$key ALIAS:$alias"

		set master [api-new-entry $value $func]
		dict set master alias_for $alias
		set newapi($func) $master		
	    }
	}
    } 

    parray noop

    #Now handle the no-op compatibility categories.
    foreach {func value} [array get ar] {
	if {[info exists noop([dict get $value category])]} {
	    if {[info exists newapi($func)]} {
		puts stderr "$func shouldn't be a noop"
		exit 1
	    }
	    
	    set master [api-new-entry $value $func]
	    dict set master noop 1
	    set newapi($func) $master
	}
    }

    

    parray newapi

    if {[array size ::missingTypes]} {
	parray ::missingTypes
	return 1
    }

    foreach {from to} [array get aliases] {
	set d $newapi($to)
	dict set d alias_for $to
	set newapi($from) $d
    }

    #Iterate the nm output and set each symbol in an associative array.
    array set validapi {}

    foreach line [split [exec nm -j -g /System/Library/Frameworks/OpenGL.framework/Libraries/libGL.dylib] \n] {
	set fn [string trim $line]

	#Only match the _gl functions.
	if {[string match _gl* $fn]} {
	    set finalfn [string range $fn 3 end]
	    puts FINALFN:$finalfn
	    set validapi($finalfn) $finalfn
	}
    }

    puts "Correcting the API functions to match the OpenGL framework."
    #parray validapi
    
    #Iterate the newapi and unset any members that the
    #libGL.dylib doesn't support, assuming they aren't no-ops.
    foreach fn [array names newapi] {
	if {![info exists validapi($fn)]} {
	    puts "WARNING: libGL.dylib lacks support for: $fn"

	    if {[dict exists $newapi($fn) noop] 
		&& [dict get $newapi($fn) noop]} {
		#This is no-op, so we should skip it.
		continue
	    }

	    #Is the function an alias for another in libGL?
	    if {[dict exists $newapi($fn) alias_for]} {
		set alias [dict get $newapi($fn) alias_for]

		if {![info exists validapi($alias)]} {
		    puts "WARNING: alias function doesn't exist for $fn."
		    puts "The alias is $alias."
		    puts "unsetting $fn"		    
		    unset newapi($fn)
		} 
	    } else {
		puts "unsetting $fn"
		unset newapi($fn)
	    }
	}
    }

    
    #Now print a warning about any symbols that libGL supports that we don't.
    foreach fn [array names validapi] {
	if {![info exists newapi($fn)]} {
	    puts "AppleSGLX is missing $fn"
	}
    }

    puts "NOW GENERATING:[lindex $::argv 1]"
    set fd [open [lindex $::argv 1] w]

    set sorted [lsort -dictionary [array names newapi]]

    foreach f $sorted {
	set attr $newapi($f)
	set pstr ""
	foreach p [dict get $attr parameters] {
	    append pstr "[lindex $p 0] [lindex $p 1], "
	}
	set pstr [string trimright $pstr ", "]
	puts $fd "[dict get $attr return] gl[set f]($pstr); "
    }

    close $fd

    if {$::argc == 3} {
	puts "NOW GENERATING:[lindex $::argv 2]"
	#Dump the array as a serialized list.
	set fd [open [lindex $::argv 2] w]
	puts $fd [array get newapi]
	close $fd
    }

    return 0
}
exit [main $::argc $::argv]