This file is indexed.

/usr/share/python-support/python-opengl.public is in python-opengl 3.0.1~b2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
pyversions=2.4-

/usr/share/pyshared/OpenGL/GL/APPLE/__init__.py
/usr/share/pyshared/OpenGL/GL/APPLE/aux_depth_stencil.py
/usr/share/pyshared/OpenGL/GL/APPLE/client_storage.py
/usr/share/pyshared/OpenGL/GL/APPLE/element_array.py
/usr/share/pyshared/OpenGL/GL/APPLE/fence.py
/usr/share/pyshared/OpenGL/GL/APPLE/float_pixels.py
/usr/share/pyshared/OpenGL/GL/APPLE/flush_buffer_range.py
/usr/share/pyshared/OpenGL/GL/APPLE/object_purgeable.py
/usr/share/pyshared/OpenGL/GL/APPLE/rgb_422.py
/usr/share/pyshared/OpenGL/GL/APPLE/row_bytes.py
/usr/share/pyshared/OpenGL/GL/APPLE/specular_vector.py
/usr/share/pyshared/OpenGL/GL/APPLE/texture_range.py
/usr/share/pyshared/OpenGL/GL/APPLE/transform_hint.py
/usr/share/pyshared/OpenGL/GL/APPLE/vertex_array_object.py
/usr/share/pyshared/OpenGL/GL/APPLE/vertex_array_range.py
/usr/share/pyshared/OpenGL/GL/APPLE/vertex_program_evaluators.py
/usr/share/pyshared/OpenGL/GL/APPLE/ycbcr_422.py
/usr/share/pyshared/OpenGL/GL/ARB/__init__.py
/usr/share/pyshared/OpenGL/GL/ARB/color_buffer_float.py
/usr/share/pyshared/OpenGL/GL/ARB/compatibility.py
/usr/share/pyshared/OpenGL/GL/ARB/copy_buffer.py
/usr/share/pyshared/OpenGL/GL/ARB/depth_buffer_float.py
/usr/share/pyshared/OpenGL/GL/ARB/depth_clamp.py
/usr/share/pyshared/OpenGL/GL/ARB/depth_texture.py
/usr/share/pyshared/OpenGL/GL/ARB/draw_buffers.py
/usr/share/pyshared/OpenGL/GL/ARB/draw_buffers_blend.py
/usr/share/pyshared/OpenGL/GL/ARB/draw_elements_base_vertex.py
/usr/share/pyshared/OpenGL/GL/ARB/draw_instanced.py
/usr/share/pyshared/OpenGL/GL/ARB/fragment_coord_conventions.py
/usr/share/pyshared/OpenGL/GL/ARB/fragment_program.py
/usr/share/pyshared/OpenGL/GL/ARB/fragment_program_shadow.py
/usr/share/pyshared/OpenGL/GL/ARB/fragment_shader.py
/usr/share/pyshared/OpenGL/GL/ARB/framebuffer_object.py
/usr/share/pyshared/OpenGL/GL/ARB/framebuffer_object_DEPRECATED.py
/usr/share/pyshared/OpenGL/GL/ARB/framebuffer_sRGB.py
/usr/share/pyshared/OpenGL/GL/ARB/geometry_shader4.py
/usr/share/pyshared/OpenGL/GL/ARB/half_float_pixel.py
/usr/share/pyshared/OpenGL/GL/ARB/half_float_vertex.py
/usr/share/pyshared/OpenGL/GL/ARB/imaging.py
/usr/share/pyshared/OpenGL/GL/ARB/imaging_DEPRECATED.py
/usr/share/pyshared/OpenGL/GL/ARB/instanced_arrays.py
/usr/share/pyshared/OpenGL/GL/ARB/map_buffer_range.py
/usr/share/pyshared/OpenGL/GL/ARB/matrix_palette.py
/usr/share/pyshared/OpenGL/GL/ARB/multisample.py
/usr/share/pyshared/OpenGL/GL/ARB/multitexture.py
/usr/share/pyshared/OpenGL/GL/ARB/occlusion_query.py
/usr/share/pyshared/OpenGL/GL/ARB/pixel_buffer_object.py
/usr/share/pyshared/OpenGL/GL/ARB/point_parameters.py
/usr/share/pyshared/OpenGL/GL/ARB/point_sprite.py
/usr/share/pyshared/OpenGL/GL/ARB/provoking_vertex.py
/usr/share/pyshared/OpenGL/GL/ARB/sample_shading.py
/usr/share/pyshared/OpenGL/GL/ARB/seamless_cube_map.py
/usr/share/pyshared/OpenGL/GL/ARB/shader_objects.py
/usr/share/pyshared/OpenGL/GL/ARB/shader_texture_lod.py
/usr/share/pyshared/OpenGL/GL/ARB/shading_language_100.py
/usr/share/pyshared/OpenGL/GL/ARB/shadow.py
/usr/share/pyshared/OpenGL/GL/ARB/shadow_ambient.py
/usr/share/pyshared/OpenGL/GL/ARB/sync.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_border_clamp.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_buffer_object.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_compression.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_compression_rgtc.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_cube_map.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_cube_map_array.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_env_add.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_env_combine.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_env_crossbar.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_env_dot3.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_float.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_gather.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_mirrored_repeat.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_multisample.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_non_power_of_two.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_query_lod.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_rectangle.py
/usr/share/pyshared/OpenGL/GL/ARB/texture_rg.py
/usr/share/pyshared/OpenGL/GL/ARB/transpose_matrix.py
/usr/share/pyshared/OpenGL/GL/ARB/uniform_buffer_object.py
/usr/share/pyshared/OpenGL/GL/ARB/vertex_array_bgra.py
/usr/share/pyshared/OpenGL/GL/ARB/vertex_array_object.py
/usr/share/pyshared/OpenGL/GL/ARB/vertex_blend.py
/usr/share/pyshared/OpenGL/GL/ARB/vertex_buffer_object.py
/usr/share/pyshared/OpenGL/GL/ARB/vertex_program.py
/usr/share/pyshared/OpenGL/GL/ARB/vertex_shader.py
/usr/share/pyshared/OpenGL/GL/ARB/window_pos.py
/usr/share/pyshared/OpenGL/GL/ATI/__init__.py
/usr/share/pyshared/OpenGL/GL/ATI/draw_buffers.py
/usr/share/pyshared/OpenGL/GL/ATI/element_array.py
/usr/share/pyshared/OpenGL/GL/ATI/envmap_bumpmap.py
/usr/share/pyshared/OpenGL/GL/ATI/fragment_shader.py
/usr/share/pyshared/OpenGL/GL/ATI/map_object_buffer.py
/usr/share/pyshared/OpenGL/GL/ATI/meminfo.py
/usr/share/pyshared/OpenGL/GL/ATI/pixel_format_float.py
/usr/share/pyshared/OpenGL/GL/ATI/pn_triangles.py
/usr/share/pyshared/OpenGL/GL/ATI/separate_stencil.py
/usr/share/pyshared/OpenGL/GL/ATI/text_fragment_shader.py
/usr/share/pyshared/OpenGL/GL/ATI/texture_env_combine3.py
/usr/share/pyshared/OpenGL/GL/ATI/texture_float.py
/usr/share/pyshared/OpenGL/GL/ATI/texture_mirror_once.py
/usr/share/pyshared/OpenGL/GL/ATI/vertex_array_object.py
/usr/share/pyshared/OpenGL/GL/ATI/vertex_attrib_array_object.py
/usr/share/pyshared/OpenGL/GL/ATI/vertex_streams.py
/usr/share/pyshared/OpenGL/GL/DFX/__init__.py
/usr/share/pyshared/OpenGL/GL/DFX/multisample.py
/usr/share/pyshared/OpenGL/GL/DFX/tbuffer.py
/usr/share/pyshared/OpenGL/GL/DFX/texture_compression_FXT1.py
/usr/share/pyshared/OpenGL/GL/EXT/422_pixels.py
/usr/share/pyshared/OpenGL/GL/EXT/GL_422_pixels.py
/usr/share/pyshared/OpenGL/GL/EXT/__init__.py
/usr/share/pyshared/OpenGL/GL/EXT/abgr.py
/usr/share/pyshared/OpenGL/GL/EXT/bgra.py
/usr/share/pyshared/OpenGL/GL/EXT/bindable_uniform.py
/usr/share/pyshared/OpenGL/GL/EXT/blend_color.py
/usr/share/pyshared/OpenGL/GL/EXT/blend_equation_separate.py
/usr/share/pyshared/OpenGL/GL/EXT/blend_func_separate.py
/usr/share/pyshared/OpenGL/GL/EXT/blend_logic_op.py
/usr/share/pyshared/OpenGL/GL/EXT/blend_minmax.py
/usr/share/pyshared/OpenGL/GL/EXT/blend_subtract.py
/usr/share/pyshared/OpenGL/GL/EXT/clip_volume_hint.py
/usr/share/pyshared/OpenGL/GL/EXT/cmyka.py
/usr/share/pyshared/OpenGL/GL/EXT/color_matrix.py
/usr/share/pyshared/OpenGL/GL/EXT/color_subtable.py
/usr/share/pyshared/OpenGL/GL/EXT/compiled_vertex_array.py
/usr/share/pyshared/OpenGL/GL/EXT/convolution.py
/usr/share/pyshared/OpenGL/GL/EXT/coordinate_frame.py
/usr/share/pyshared/OpenGL/GL/EXT/copy_texture.py
/usr/share/pyshared/OpenGL/GL/EXT/cull_vertex.py
/usr/share/pyshared/OpenGL/GL/EXT/depth_bounds_test.py
/usr/share/pyshared/OpenGL/GL/EXT/direct_state_access.py
/usr/share/pyshared/OpenGL/GL/EXT/draw_buffers2.py
/usr/share/pyshared/OpenGL/GL/EXT/draw_instanced.py
/usr/share/pyshared/OpenGL/GL/EXT/draw_range_elements.py
/usr/share/pyshared/OpenGL/GL/EXT/fog_coord.py
/usr/share/pyshared/OpenGL/GL/EXT/framebuffer_blit.py
/usr/share/pyshared/OpenGL/GL/EXT/framebuffer_multisample.py
/usr/share/pyshared/OpenGL/GL/EXT/framebuffer_object.py
/usr/share/pyshared/OpenGL/GL/EXT/framebuffer_sRGB.py
/usr/share/pyshared/OpenGL/GL/EXT/geometry_shader4.py
/usr/share/pyshared/OpenGL/GL/EXT/gpu_program_parameters.py
/usr/share/pyshared/OpenGL/GL/EXT/gpu_shader4.py
/usr/share/pyshared/OpenGL/GL/EXT/histogram.py
/usr/share/pyshared/OpenGL/GL/EXT/index_array_formats.py
/usr/share/pyshared/OpenGL/GL/EXT/index_func.py
/usr/share/pyshared/OpenGL/GL/EXT/index_material.py
/usr/share/pyshared/OpenGL/GL/EXT/index_texture.py
/usr/share/pyshared/OpenGL/GL/EXT/light_texture.py
/usr/share/pyshared/OpenGL/GL/EXT/misc_attribute.py
/usr/share/pyshared/OpenGL/GL/EXT/multi_draw_arrays.py
/usr/share/pyshared/OpenGL/GL/EXT/multisample.py
/usr/share/pyshared/OpenGL/GL/EXT/packed_depth_stencil.py
/usr/share/pyshared/OpenGL/GL/EXT/packed_float.py
/usr/share/pyshared/OpenGL/GL/EXT/packed_pixels.py
/usr/share/pyshared/OpenGL/GL/EXT/paletted_texture.py
/usr/share/pyshared/OpenGL/GL/EXT/pixel_buffer_object.py
/usr/share/pyshared/OpenGL/GL/EXT/pixel_transform.py
/usr/share/pyshared/OpenGL/GL/EXT/pixel_transform_color_table.py
/usr/share/pyshared/OpenGL/GL/EXT/point_parameters.py
/usr/share/pyshared/OpenGL/GL/EXT/polygon_offset.py
/usr/share/pyshared/OpenGL/GL/EXT/provoking_vertex.py
/usr/share/pyshared/OpenGL/GL/EXT/rescale_normal.py
/usr/share/pyshared/OpenGL/GL/EXT/secondary_color.py
/usr/share/pyshared/OpenGL/GL/EXT/separate_shader_objects.py
/usr/share/pyshared/OpenGL/GL/EXT/separate_specular_color.py
/usr/share/pyshared/OpenGL/GL/EXT/shadow_funcs.py
/usr/share/pyshared/OpenGL/GL/EXT/shared_texture_palette.py
/usr/share/pyshared/OpenGL/GL/EXT/stencil_clear_tag.py
/usr/share/pyshared/OpenGL/GL/EXT/stencil_two_side.py
/usr/share/pyshared/OpenGL/GL/EXT/stencil_wrap.py
/usr/share/pyshared/OpenGL/GL/EXT/subtexture.py
/usr/share/pyshared/OpenGL/GL/EXT/texture.py
/usr/share/pyshared/OpenGL/GL/EXT/texture3D.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_array.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_buffer_object.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_compression_latc.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_compression_rgtc.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_compression_s3tc.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_cube_map.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_env_add.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_env_combine.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_env_dot3.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_filter_anisotropic.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_integer.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_lod_bias.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_mirror_clamp.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_object.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_perturb_normal.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_sRGB.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_shared_exponent.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_snorm.py
/usr/share/pyshared/OpenGL/GL/EXT/texture_swizzle.py
/usr/share/pyshared/OpenGL/GL/EXT/timer_query.py
/usr/share/pyshared/OpenGL/GL/EXT/transform_feedback.py
/usr/share/pyshared/OpenGL/GL/EXT/vertex_array.py
/usr/share/pyshared/OpenGL/GL/EXT/vertex_array_bgra.py
/usr/share/pyshared/OpenGL/GL/EXT/vertex_shader.py
/usr/share/pyshared/OpenGL/GL/EXT/vertex_weighting.py
/usr/share/pyshared/OpenGL/GL/GREMEDY/__init__.py
/usr/share/pyshared/OpenGL/GL/GREMEDY/frame_terminator.py
/usr/share/pyshared/OpenGL/GL/GREMEDY/string_marker.py
/usr/share/pyshared/OpenGL/GL/HP/__init__.py
/usr/share/pyshared/OpenGL/GL/HP/convolution_border_modes.py
/usr/share/pyshared/OpenGL/GL/HP/image_transform.py
/usr/share/pyshared/OpenGL/GL/HP/occlusion_test.py
/usr/share/pyshared/OpenGL/GL/HP/texture_lighting.py
/usr/share/pyshared/OpenGL/GL/IBM/__init__.py
/usr/share/pyshared/OpenGL/GL/IBM/cull_vertex.py
/usr/share/pyshared/OpenGL/GL/IBM/multimode_draw_arrays.py
/usr/share/pyshared/OpenGL/GL/IBM/rasterpos_clip.py
/usr/share/pyshared/OpenGL/GL/IBM/texture_mirrored_repeat.py
/usr/share/pyshared/OpenGL/GL/IBM/vertex_array_lists.py
/usr/share/pyshared/OpenGL/GL/INGR/__init__.py
/usr/share/pyshared/OpenGL/GL/INGR/blend_func_separate.py
/usr/share/pyshared/OpenGL/GL/INGR/color_clamp.py
/usr/share/pyshared/OpenGL/GL/INGR/interlace_read.py
/usr/share/pyshared/OpenGL/GL/INGR/palette_buffer.py
/usr/share/pyshared/OpenGL/GL/INTEL/__init__.py
/usr/share/pyshared/OpenGL/GL/INTEL/parallel_arrays.py
/usr/share/pyshared/OpenGL/GL/INTEL/texture_scissor.py
/usr/share/pyshared/OpenGL/GL/MESA/__init__.py
/usr/share/pyshared/OpenGL/GL/MESA/pack_invert.py
/usr/share/pyshared/OpenGL/GL/MESA/resize_buffers.py
/usr/share/pyshared/OpenGL/GL/MESA/window_pos.py
/usr/share/pyshared/OpenGL/GL/MESA/ycbcr_texture.py
/usr/share/pyshared/OpenGL/GL/MESAX/texture_stack.py
/usr/share/pyshared/OpenGL/GL/NV/__init__.py
/usr/share/pyshared/OpenGL/GL/NV/blend_square.py
/usr/share/pyshared/OpenGL/GL/NV/conditional_render.py
/usr/share/pyshared/OpenGL/GL/NV/copy_depth_to_color.py
/usr/share/pyshared/OpenGL/GL/NV/copy_image.py
/usr/share/pyshared/OpenGL/GL/NV/depth_buffer_float.py
/usr/share/pyshared/OpenGL/GL/NV/depth_clamp.py
/usr/share/pyshared/OpenGL/GL/NV/evaluators.py
/usr/share/pyshared/OpenGL/GL/NV/explicit_multisample.py
/usr/share/pyshared/OpenGL/GL/NV/fence.py
/usr/share/pyshared/OpenGL/GL/NV/float_buffer.py
/usr/share/pyshared/OpenGL/GL/NV/fog_distance.py
/usr/share/pyshared/OpenGL/GL/NV/fragment_program.py
/usr/share/pyshared/OpenGL/GL/NV/fragment_program2.py
/usr/share/pyshared/OpenGL/GL/NV/fragment_program4.py
/usr/share/pyshared/OpenGL/GL/NV/fragment_program_option.py
/usr/share/pyshared/OpenGL/GL/NV/framebuffer_multisample_coverage.py
/usr/share/pyshared/OpenGL/GL/NV/geometry_program4.py
/usr/share/pyshared/OpenGL/GL/NV/geometry_shader4.py
/usr/share/pyshared/OpenGL/GL/NV/gpu_program4.py
/usr/share/pyshared/OpenGL/GL/NV/half_float.py
/usr/share/pyshared/OpenGL/GL/NV/light_max_exponent.py
/usr/share/pyshared/OpenGL/GL/NV/multisample_filter_hint.py
/usr/share/pyshared/OpenGL/GL/NV/occlusion_query.py
/usr/share/pyshared/OpenGL/GL/NV/packed_depth_stencil.py
/usr/share/pyshared/OpenGL/GL/NV/parameter_buffer_object.py
/usr/share/pyshared/OpenGL/GL/NV/parameter_buffer_object2.py
/usr/share/pyshared/OpenGL/GL/NV/pixel_data_range.py
/usr/share/pyshared/OpenGL/GL/NV/point_sprite.py
/usr/share/pyshared/OpenGL/GL/NV/present_video.py
/usr/share/pyshared/OpenGL/GL/NV/primitive_restart.py
/usr/share/pyshared/OpenGL/GL/NV/register_combiners.py
/usr/share/pyshared/OpenGL/GL/NV/register_combiners2.py
/usr/share/pyshared/OpenGL/GL/NV/shader_buffer_load.py
/usr/share/pyshared/OpenGL/GL/NV/texgen_emboss.py
/usr/share/pyshared/OpenGL/GL/NV/texgen_reflection.py
/usr/share/pyshared/OpenGL/GL/NV/texture_barrier.py
/usr/share/pyshared/OpenGL/GL/NV/texture_compression_vtc.py
/usr/share/pyshared/OpenGL/GL/NV/texture_env_combine4.py
/usr/share/pyshared/OpenGL/GL/NV/texture_expand_normal.py
/usr/share/pyshared/OpenGL/GL/NV/texture_rectangle.py
/usr/share/pyshared/OpenGL/GL/NV/texture_shader.py
/usr/share/pyshared/OpenGL/GL/NV/texture_shader2.py
/usr/share/pyshared/OpenGL/GL/NV/texture_shader3.py
/usr/share/pyshared/OpenGL/GL/NV/transform_feedback.py
/usr/share/pyshared/OpenGL/GL/NV/transform_feedback2.py
/usr/share/pyshared/OpenGL/GL/NV/vertex_array_range.py
/usr/share/pyshared/OpenGL/GL/NV/vertex_array_range2.py
/usr/share/pyshared/OpenGL/GL/NV/vertex_buffer_unified_memory.py
/usr/share/pyshared/OpenGL/GL/NV/vertex_program.py
/usr/share/pyshared/OpenGL/GL/NV/vertex_program1_1.py
/usr/share/pyshared/OpenGL/GL/NV/vertex_program2.py
/usr/share/pyshared/OpenGL/GL/NV/vertex_program2_option.py
/usr/share/pyshared/OpenGL/GL/NV/vertex_program3.py
/usr/share/pyshared/OpenGL/GL/NV/vertex_program4.py
/usr/share/pyshared/OpenGL/GL/NV/video_capture.py
/usr/share/pyshared/OpenGL/GL/OES/__init__.py
/usr/share/pyshared/OpenGL/GL/OES/read_format.py
/usr/share/pyshared/OpenGL/GL/OML/__init__.py
/usr/share/pyshared/OpenGL/GL/OML/interlace.py
/usr/share/pyshared/OpenGL/GL/OML/resample.py
/usr/share/pyshared/OpenGL/GL/OML/subsample.py
/usr/share/pyshared/OpenGL/GL/PGI/__init__.py
/usr/share/pyshared/OpenGL/GL/PGI/misc_hints.py
/usr/share/pyshared/OpenGL/GL/PGI/vertex_hints.py
/usr/share/pyshared/OpenGL/GL/REND/__init__.py
/usr/share/pyshared/OpenGL/GL/REND/screen_coordinates.py
/usr/share/pyshared/OpenGL/GL/S3/__init__.py
/usr/share/pyshared/OpenGL/GL/S3/s3tc.py
/usr/share/pyshared/OpenGL/GL/SGI/__init__.py
/usr/share/pyshared/OpenGL/GL/SGI/color_matrix.py
/usr/share/pyshared/OpenGL/GL/SGI/color_table.py
/usr/share/pyshared/OpenGL/GL/SGI/depth_pass_instrument.py
/usr/share/pyshared/OpenGL/GL/SGI/texture_color_table.py
/usr/share/pyshared/OpenGL/GL/SGIS/__init__.py
/usr/share/pyshared/OpenGL/GL/SGIS/detail_texture.py
/usr/share/pyshared/OpenGL/GL/SGIS/fog_function.py
/usr/share/pyshared/OpenGL/GL/SGIS/generate_mipmap.py
/usr/share/pyshared/OpenGL/GL/SGIS/multisample.py
/usr/share/pyshared/OpenGL/GL/SGIS/pixel_texture.py
/usr/share/pyshared/OpenGL/GL/SGIS/point_line_texgen.py
/usr/share/pyshared/OpenGL/GL/SGIS/point_parameters.py
/usr/share/pyshared/OpenGL/GL/SGIS/sharpen_texture.py
/usr/share/pyshared/OpenGL/GL/SGIS/texture4D.py
/usr/share/pyshared/OpenGL/GL/SGIS/texture_border_clamp.py
/usr/share/pyshared/OpenGL/GL/SGIS/texture_color_mask.py
/usr/share/pyshared/OpenGL/GL/SGIS/texture_edge_clamp.py
/usr/share/pyshared/OpenGL/GL/SGIS/texture_filter4.py
/usr/share/pyshared/OpenGL/GL/SGIS/texture_lod.py
/usr/share/pyshared/OpenGL/GL/SGIS/texture_select.py
/usr/share/pyshared/OpenGL/GL/SGIX/FfdMask.py
/usr/share/pyshared/OpenGL/GL/SGIX/__init__.py
/usr/share/pyshared/OpenGL/GL/SGIX/async.py
/usr/share/pyshared/OpenGL/GL/SGIX/async_histogram.py
/usr/share/pyshared/OpenGL/GL/SGIX/async_pixel.py
/usr/share/pyshared/OpenGL/GL/SGIX/blend_alpha_minmax.py
/usr/share/pyshared/OpenGL/GL/SGIX/calligraphic_fragment.py
/usr/share/pyshared/OpenGL/GL/SGIX/clipmap.py
/usr/share/pyshared/OpenGL/GL/SGIX/convolution_accuracy.py
/usr/share/pyshared/OpenGL/GL/SGIX/depth_pass_instrument.py
/usr/share/pyshared/OpenGL/GL/SGIX/depth_texture.py
/usr/share/pyshared/OpenGL/GL/SGIX/flush_raster.py
/usr/share/pyshared/OpenGL/GL/SGIX/fog_offset.py
/usr/share/pyshared/OpenGL/GL/SGIX/fog_scale.py
/usr/share/pyshared/OpenGL/GL/SGIX/fragment_lighting.py
/usr/share/pyshared/OpenGL/GL/SGIX/framezoom.py
/usr/share/pyshared/OpenGL/GL/SGIX/igloo_interface.py
/usr/share/pyshared/OpenGL/GL/SGIX/impact_pixel_texture.py
/usr/share/pyshared/OpenGL/GL/SGIX/instruments.py
/usr/share/pyshared/OpenGL/GL/SGIX/interlace.py
/usr/share/pyshared/OpenGL/GL/SGIX/ir_instrument1.py
/usr/share/pyshared/OpenGL/GL/SGIX/list_priority.py
/usr/share/pyshared/OpenGL/GL/SGIX/pixel_texture.py
/usr/share/pyshared/OpenGL/GL/SGIX/pixel_tiles.py
/usr/share/pyshared/OpenGL/GL/SGIX/polynomial_ffd.py
/usr/share/pyshared/OpenGL/GL/SGIX/reference_plane.py
/usr/share/pyshared/OpenGL/GL/SGIX/resample.py
/usr/share/pyshared/OpenGL/GL/SGIX/scalebias_hint.py
/usr/share/pyshared/OpenGL/GL/SGIX/shadow.py
/usr/share/pyshared/OpenGL/GL/SGIX/shadow_ambient.py
/usr/share/pyshared/OpenGL/GL/SGIX/sprite.py
/usr/share/pyshared/OpenGL/GL/SGIX/subsample.py
/usr/share/pyshared/OpenGL/GL/SGIX/tag_sample_buffer.py
/usr/share/pyshared/OpenGL/GL/SGIX/texture_add_env.py
/usr/share/pyshared/OpenGL/GL/SGIX/texture_coordinate_clamp.py
/usr/share/pyshared/OpenGL/GL/SGIX/texture_lod_bias.py
/usr/share/pyshared/OpenGL/GL/SGIX/texture_multi_buffer.py
/usr/share/pyshared/OpenGL/GL/SGIX/texture_scale_bias.py
/usr/share/pyshared/OpenGL/GL/SGIX/texture_select.py
/usr/share/pyshared/OpenGL/GL/SGIX/vertex_preclip.py
/usr/share/pyshared/OpenGL/GL/SGIX/ycrcb.py
/usr/share/pyshared/OpenGL/GL/SGIX/ycrcb_subsample.py
/usr/share/pyshared/OpenGL/GL/SGIX/ycrcba.py
/usr/share/pyshared/OpenGL/GL/SUN/__init__.py
/usr/share/pyshared/OpenGL/GL/SUN/convolution_border_modes.py
/usr/share/pyshared/OpenGL/GL/SUN/global_alpha.py
/usr/share/pyshared/OpenGL/GL/SUN/mesh_array.py
/usr/share/pyshared/OpenGL/GL/SUN/slice_accum.py
/usr/share/pyshared/OpenGL/GL/SUN/triangle_list.py
/usr/share/pyshared/OpenGL/GL/SUN/vertex.py
/usr/share/pyshared/OpenGL/GL/SUNX/__init__.py
/usr/share/pyshared/OpenGL/GL/SUNX/constant_data.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_1_2.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_1_2_DEPRECATED.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_1_2_images.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_1_3.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_1_3_DEPRECATED.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_1_3_images.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_1_4.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_1_4_DEPRECATED.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_1_5.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_1_5_DEPRECATED.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_2_0.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_2_0_DEPRECATED.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_2_1.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_2_1_DEPRECATED.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_3_0.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_3_0_DEPRECATED.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_3_1.py
/usr/share/pyshared/OpenGL/GL/VERSION/GL_3_2.py
/usr/share/pyshared/OpenGL/GL/WIN/__init__.py
/usr/share/pyshared/OpenGL/GL/WIN/phong_shading.py
/usr/share/pyshared/OpenGL/GL/WIN/specular_fog.py
/usr/share/pyshared/OpenGL/GL/__init__.py
/usr/share/pyshared/OpenGL/GL/exceptional.py
/usr/share/pyshared/OpenGL/GL/feedback.py
/usr/share/pyshared/OpenGL/GL/framebufferobjects.py
/usr/share/pyshared/OpenGL/GL/glget.py
/usr/share/pyshared/OpenGL/GL/images.py
/usr/share/pyshared/OpenGL/GL/pointers.py
/usr/share/pyshared/OpenGL/GL/selection.py
/usr/share/pyshared/OpenGL/GL/shaders.py
/usr/share/pyshared/OpenGL/GLE/__init__.py
/usr/share/pyshared/OpenGL/GLE/exceptional.py
/usr/share/pyshared/OpenGL/GLU/EXT/nurbs_tessellator.py
/usr/share/pyshared/OpenGL/GLU/EXT/object_space_tess.py
/usr/share/pyshared/OpenGL/GLU/__init__.py
/usr/share/pyshared/OpenGL/GLU/glunurbs.py
/usr/share/pyshared/OpenGL/GLU/glustruct.py
/usr/share/pyshared/OpenGL/GLU/projection.py
/usr/share/pyshared/OpenGL/GLU/quadrics.py
/usr/share/pyshared/OpenGL/GLU/tess.py
/usr/share/pyshared/OpenGL/GLUT/__init__.py
/usr/share/pyshared/OpenGL/GLUT/fonts.py
/usr/share/pyshared/OpenGL/GLUT/freeglut.py
/usr/share/pyshared/OpenGL/GLUT/special.py
/usr/share/pyshared/OpenGL/GLX/__init__.py
/usr/share/pyshared/OpenGL/Tk/__init__.py
/usr/share/pyshared/OpenGL/WGL/__init__.py
/usr/share/pyshared/OpenGL/__init__.py
/usr/share/pyshared/OpenGL/acceleratesupport.py
/usr/share/pyshared/OpenGL/arrays/__init__.py
/usr/share/pyshared/OpenGL/arrays/_numeric.py
/usr/share/pyshared/OpenGL/arrays/_strings.py
/usr/share/pyshared/OpenGL/arrays/arraydatatype.py
/usr/share/pyshared/OpenGL/arrays/arrayhelpers.py
/usr/share/pyshared/OpenGL/arrays/ctypesarrays.py
/usr/share/pyshared/OpenGL/arrays/ctypesparameters.py
/usr/share/pyshared/OpenGL/arrays/ctypespointers.py
/usr/share/pyshared/OpenGL/arrays/formathandler.py
/usr/share/pyshared/OpenGL/arrays/lists.py
/usr/share/pyshared/OpenGL/arrays/nones.py
/usr/share/pyshared/OpenGL/arrays/numbers.py
/usr/share/pyshared/OpenGL/arrays/numeric.py
/usr/share/pyshared/OpenGL/arrays/numericnames.py
/usr/share/pyshared/OpenGL/arrays/numpymodule.py
/usr/share/pyshared/OpenGL/arrays/strings.py
/usr/share/pyshared/OpenGL/arrays/vbo.py
/usr/share/pyshared/OpenGL/constant.py
/usr/share/pyshared/OpenGL/constants.py
/usr/share/pyshared/OpenGL/contextdata.py
/usr/share/pyshared/OpenGL/converters.py
/usr/share/pyshared/OpenGL/error.py
/usr/share/pyshared/OpenGL/extensions.py
/usr/share/pyshared/OpenGL/images.py
/usr/share/pyshared/OpenGL/latebind.py
/usr/share/pyshared/OpenGL/lazywrapper.py
/usr/share/pyshared/OpenGL/logs.py
/usr/share/pyshared/OpenGL/platform/__init__.py
/usr/share/pyshared/OpenGL/platform/baseplatform.py
/usr/share/pyshared/OpenGL/platform/ctypesloader.py
/usr/share/pyshared/OpenGL/platform/darwin.py
/usr/share/pyshared/OpenGL/platform/entrypoint31.py
/usr/share/pyshared/OpenGL/platform/glx.py
/usr/share/pyshared/OpenGL/platform/win32.py
/usr/share/pyshared/OpenGL/plugins.py
/usr/share/pyshared/OpenGL/raw/GL/AMD/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/AMD/draw_buffers_blend.py
/usr/share/pyshared/OpenGL/raw/GL/AMD/performance_monitor.py
/usr/share/pyshared/OpenGL/raw/GL/AMD/texture_texture4.py
/usr/share/pyshared/OpenGL/raw/GL/AMD/vertex_shader_tesselator.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/aux_depth_stencil.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/client_storage.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/element_array.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/fence.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/float_pixels.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/flush_buffer_range.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/object_purgeable.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/rgb_422.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/row_bytes.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/specular_vector.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/texture_range.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/transform_hint.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/vertex_array_object.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/vertex_array_range.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/vertex_program_evaluators.py
/usr/share/pyshared/OpenGL/raw/GL/APPLE/ycbcr_422.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/color_buffer_float.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/compatibility.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/copy_buffer.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/depth_buffer_float.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/depth_clamp.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/depth_texture.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/draw_buffers.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/draw_buffers_blend.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/draw_elements_base_vertex.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/draw_instanced.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/fragment_coord_conventions.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/fragment_program.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/fragment_program_shadow.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/fragment_shader.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/framebuffer_object.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/framebuffer_object_DEPRECATED.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/framebuffer_sRGB.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/geometry_shader4.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/half_float_pixel.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/half_float_vertex.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/imaging.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/imaging_DEPRECATED.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/instanced_arrays.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/map_buffer_range.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/matrix_palette.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/multisample.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/multitexture.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/occlusion_query.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/pixel_buffer_object.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/point_parameters.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/point_sprite.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/provoking_vertex.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/sample_shading.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/seamless_cube_map.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/shader_objects.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/shader_texture_lod.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/shading_language_100.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/shadow.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/shadow_ambient.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/sync.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_border_clamp.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_buffer_object.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_compression.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_compression_rgtc.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_cube_map.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_cube_map_array.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_env_add.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_env_combine.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_env_crossbar.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_env_dot3.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_float.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_gather.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_mirrored_repeat.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_multisample.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_non_power_of_two.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_query_lod.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_rectangle.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/texture_rg.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/transpose_matrix.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/uniform_buffer_object.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/vertex_array_bgra.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/vertex_array_object.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/vertex_blend.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/vertex_buffer_object.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/vertex_program.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/vertex_shader.py
/usr/share/pyshared/OpenGL/raw/GL/ARB/window_pos.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/draw_buffers.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/element_array.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/envmap_bumpmap.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/fragment_shader.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/map_object_buffer.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/meminfo.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/pixel_format_float.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/pn_triangles.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/separate_stencil.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/text_fragment_shader.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/texture_env_combine3.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/texture_float.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/texture_mirror_once.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/vertex_array_object.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/vertex_attrib_array_object.py
/usr/share/pyshared/OpenGL/raw/GL/ATI/vertex_streams.py
/usr/share/pyshared/OpenGL/raw/GL/DFX/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/DFX/multisample.py
/usr/share/pyshared/OpenGL/raw/GL/DFX/tbuffer.py
/usr/share/pyshared/OpenGL/raw/GL/DFX/texture_compression_FXT1.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/422_pixels.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/GL_422_pixels.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/abgr.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/bgra.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/bindable_uniform.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/blend_color.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/blend_equation_separate.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/blend_func_separate.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/blend_logic_op.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/blend_minmax.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/blend_subtract.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/clip_volume_hint.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/cmyka.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/color_matrix.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/color_subtable.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/compiled_vertex_array.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/convolution.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/coordinate_frame.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/copy_texture.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/cull_vertex.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/depth_bounds_test.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/direct_state_access.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/draw_buffers2.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/draw_instanced.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/draw_range_elements.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/fog_coord.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/framebuffer_blit.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/framebuffer_multisample.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/framebuffer_object.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/framebuffer_sRGB.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/geometry_shader4.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/gpu_program_parameters.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/gpu_shader4.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/histogram.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/index_array_formats.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/index_func.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/index_material.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/index_texture.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/light_texture.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/misc_attribute.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/multi_draw_arrays.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/multisample.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/packed_depth_stencil.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/packed_float.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/packed_pixels.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/paletted_texture.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/pixel_buffer_object.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/pixel_transform.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/pixel_transform_color_table.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/point_parameters.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/polygon_offset.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/provoking_vertex.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/rescale_normal.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/secondary_color.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/separate_shader_objects.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/separate_specular_color.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/shadow_funcs.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/shared_texture_palette.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/stencil_clear_tag.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/stencil_two_side.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/stencil_wrap.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/subtexture.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture3D.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_array.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_buffer_object.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_compression_latc.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_compression_rgtc.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_compression_s3tc.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_cube_map.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_env_add.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_env_combine.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_env_dot3.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_filter_anisotropic.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_integer.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_lod_bias.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_mirror_clamp.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_object.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_perturb_normal.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_sRGB.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_shared_exponent.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_snorm.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/texture_swizzle.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/timer_query.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/transform_feedback.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/vertex_array.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/vertex_array_bgra.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/vertex_shader.py
/usr/share/pyshared/OpenGL/raw/GL/EXT/vertex_weighting.py
/usr/share/pyshared/OpenGL/raw/GL/GLEXT/GL_64_TYPES_DEFINED.py
/usr/share/pyshared/OpenGL/raw/GL/GLEXT/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/GREMEDY/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/GREMEDY/frame_terminator.py
/usr/share/pyshared/OpenGL/raw/GL/GREMEDY/string_marker.py
/usr/share/pyshared/OpenGL/raw/GL/HP/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/HP/convolution_border_modes.py
/usr/share/pyshared/OpenGL/raw/GL/HP/image_transform.py
/usr/share/pyshared/OpenGL/raw/GL/HP/occlusion_test.py
/usr/share/pyshared/OpenGL/raw/GL/HP/texture_lighting.py
/usr/share/pyshared/OpenGL/raw/GL/IBM/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/IBM/cull_vertex.py
/usr/share/pyshared/OpenGL/raw/GL/IBM/multimode_draw_arrays.py
/usr/share/pyshared/OpenGL/raw/GL/IBM/rasterpos_clip.py
/usr/share/pyshared/OpenGL/raw/GL/IBM/texture_mirrored_repeat.py
/usr/share/pyshared/OpenGL/raw/GL/IBM/vertex_array_lists.py
/usr/share/pyshared/OpenGL/raw/GL/INGR/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/INGR/blend_func_separate.py
/usr/share/pyshared/OpenGL/raw/GL/INGR/color_clamp.py
/usr/share/pyshared/OpenGL/raw/GL/INGR/interlace_read.py
/usr/share/pyshared/OpenGL/raw/GL/INGR/palette_buffer.py
/usr/share/pyshared/OpenGL/raw/GL/INTEL/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/INTEL/parallel_arrays.py
/usr/share/pyshared/OpenGL/raw/GL/INTEL/texture_scissor.py
/usr/share/pyshared/OpenGL/raw/GL/MESA/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/MESA/pack_invert.py
/usr/share/pyshared/OpenGL/raw/GL/MESA/resize_buffers.py
/usr/share/pyshared/OpenGL/raw/GL/MESA/window_pos.py
/usr/share/pyshared/OpenGL/raw/GL/MESA/ycbcr_texture.py
/usr/share/pyshared/OpenGL/raw/GL/MESAX/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/MESAX/texture_stack.py
/usr/share/pyshared/OpenGL/raw/GL/NV/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/NV/blend_square.py
/usr/share/pyshared/OpenGL/raw/GL/NV/conditional_render.py
/usr/share/pyshared/OpenGL/raw/GL/NV/copy_depth_to_color.py
/usr/share/pyshared/OpenGL/raw/GL/NV/copy_image.py
/usr/share/pyshared/OpenGL/raw/GL/NV/depth_buffer_float.py
/usr/share/pyshared/OpenGL/raw/GL/NV/depth_clamp.py
/usr/share/pyshared/OpenGL/raw/GL/NV/evaluators.py
/usr/share/pyshared/OpenGL/raw/GL/NV/explicit_multisample.py
/usr/share/pyshared/OpenGL/raw/GL/NV/fence.py
/usr/share/pyshared/OpenGL/raw/GL/NV/float_buffer.py
/usr/share/pyshared/OpenGL/raw/GL/NV/fog_distance.py
/usr/share/pyshared/OpenGL/raw/GL/NV/fragment_program.py
/usr/share/pyshared/OpenGL/raw/GL/NV/fragment_program2.py
/usr/share/pyshared/OpenGL/raw/GL/NV/fragment_program4.py
/usr/share/pyshared/OpenGL/raw/GL/NV/fragment_program_option.py
/usr/share/pyshared/OpenGL/raw/GL/NV/framebuffer_multisample_coverage.py
/usr/share/pyshared/OpenGL/raw/GL/NV/geometry_program4.py
/usr/share/pyshared/OpenGL/raw/GL/NV/geometry_shader4.py
/usr/share/pyshared/OpenGL/raw/GL/NV/gpu_program4.py
/usr/share/pyshared/OpenGL/raw/GL/NV/half_float.py
/usr/share/pyshared/OpenGL/raw/GL/NV/light_max_exponent.py
/usr/share/pyshared/OpenGL/raw/GL/NV/multisample_filter_hint.py
/usr/share/pyshared/OpenGL/raw/GL/NV/occlusion_query.py
/usr/share/pyshared/OpenGL/raw/GL/NV/packed_depth_stencil.py
/usr/share/pyshared/OpenGL/raw/GL/NV/parameter_buffer_object.py
/usr/share/pyshared/OpenGL/raw/GL/NV/parameter_buffer_object2.py
/usr/share/pyshared/OpenGL/raw/GL/NV/pixel_data_range.py
/usr/share/pyshared/OpenGL/raw/GL/NV/point_sprite.py
/usr/share/pyshared/OpenGL/raw/GL/NV/present_video.py
/usr/share/pyshared/OpenGL/raw/GL/NV/primitive_restart.py
/usr/share/pyshared/OpenGL/raw/GL/NV/register_combiners.py
/usr/share/pyshared/OpenGL/raw/GL/NV/register_combiners2.py
/usr/share/pyshared/OpenGL/raw/GL/NV/shader_buffer_load.py
/usr/share/pyshared/OpenGL/raw/GL/NV/texgen_emboss.py
/usr/share/pyshared/OpenGL/raw/GL/NV/texgen_reflection.py
/usr/share/pyshared/OpenGL/raw/GL/NV/texture_barrier.py
/usr/share/pyshared/OpenGL/raw/GL/NV/texture_compression_vtc.py
/usr/share/pyshared/OpenGL/raw/GL/NV/texture_env_combine4.py
/usr/share/pyshared/OpenGL/raw/GL/NV/texture_expand_normal.py
/usr/share/pyshared/OpenGL/raw/GL/NV/texture_rectangle.py
/usr/share/pyshared/OpenGL/raw/GL/NV/texture_shader.py
/usr/share/pyshared/OpenGL/raw/GL/NV/texture_shader2.py
/usr/share/pyshared/OpenGL/raw/GL/NV/texture_shader3.py
/usr/share/pyshared/OpenGL/raw/GL/NV/transform_feedback.py
/usr/share/pyshared/OpenGL/raw/GL/NV/transform_feedback2.py
/usr/share/pyshared/OpenGL/raw/GL/NV/vertex_array_range.py
/usr/share/pyshared/OpenGL/raw/GL/NV/vertex_array_range2.py
/usr/share/pyshared/OpenGL/raw/GL/NV/vertex_buffer_unified_memory.py
/usr/share/pyshared/OpenGL/raw/GL/NV/vertex_program.py
/usr/share/pyshared/OpenGL/raw/GL/NV/vertex_program1_1.py
/usr/share/pyshared/OpenGL/raw/GL/NV/vertex_program2.py
/usr/share/pyshared/OpenGL/raw/GL/NV/vertex_program2_option.py
/usr/share/pyshared/OpenGL/raw/GL/NV/vertex_program3.py
/usr/share/pyshared/OpenGL/raw/GL/NV/vertex_program4.py
/usr/share/pyshared/OpenGL/raw/GL/NV/video_capture.py
/usr/share/pyshared/OpenGL/raw/GL/OES/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/OES/read_format.py
/usr/share/pyshared/OpenGL/raw/GL/OML/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/OML/interlace.py
/usr/share/pyshared/OpenGL/raw/GL/OML/resample.py
/usr/share/pyshared/OpenGL/raw/GL/OML/subsample.py
/usr/share/pyshared/OpenGL/raw/GL/PGI/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/PGI/misc_hints.py
/usr/share/pyshared/OpenGL/raw/GL/PGI/vertex_hints.py
/usr/share/pyshared/OpenGL/raw/GL/REND/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/REND/screen_coordinates.py
/usr/share/pyshared/OpenGL/raw/GL/S3/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/S3/s3tc.py
/usr/share/pyshared/OpenGL/raw/GL/SGI/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/SGI/color_matrix.py
/usr/share/pyshared/OpenGL/raw/GL/SGI/color_table.py
/usr/share/pyshared/OpenGL/raw/GL/SGI/depth_pass_instrument.py
/usr/share/pyshared/OpenGL/raw/GL/SGI/texture_color_table.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/detail_texture.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/fog_function.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/generate_mipmap.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/multisample.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/pixel_texture.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/point_line_texgen.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/point_parameters.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/sharpen_texture.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/texture4D.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/texture_border_clamp.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/texture_color_mask.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/texture_edge_clamp.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/texture_filter4.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/texture_lod.py
/usr/share/pyshared/OpenGL/raw/GL/SGIS/texture_select.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/FfdMask.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/async.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/async_histogram.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/async_pixel.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/blend_alpha_minmax.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/calligraphic_fragment.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/clipmap.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/convolution_accuracy.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/depth_pass_instrument.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/depth_texture.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/flush_raster.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/fog_offset.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/fog_scale.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/fragment_lighting.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/framezoom.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/igloo_interface.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/impact_pixel_texture.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/instruments.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/interlace.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/ir_instrument1.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/list_priority.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/pixel_texture.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/pixel_tiles.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/polynomial_ffd.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/reference_plane.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/resample.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/scalebias_hint.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/shadow.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/shadow_ambient.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/sprite.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/subsample.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/tag_sample_buffer.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/texture_add_env.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/texture_coordinate_clamp.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/texture_lod_bias.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/texture_multi_buffer.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/texture_scale_bias.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/texture_select.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/vertex_preclip.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/ycrcb.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/ycrcb_subsample.py
/usr/share/pyshared/OpenGL/raw/GL/SGIX/ycrcba.py
/usr/share/pyshared/OpenGL/raw/GL/SUN/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/SUN/convolution_border_modes.py
/usr/share/pyshared/OpenGL/raw/GL/SUN/global_alpha.py
/usr/share/pyshared/OpenGL/raw/GL/SUN/mesh_array.py
/usr/share/pyshared/OpenGL/raw/GL/SUN/slice_accum.py
/usr/share/pyshared/OpenGL/raw/GL/SUN/triangle_list.py
/usr/share/pyshared/OpenGL/raw/GL/SUN/vertex.py
/usr/share/pyshared/OpenGL/raw/GL/SUNX/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/SUNX/constant_data.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_1_2.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_1_2_DEPRECATED.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_1_3.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_1_3_DEPRECATED.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_1_4.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_1_4_DEPRECATED.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_1_5.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_1_5_DEPRECATED.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_2_0.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_2_0_DEPRECATED.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_2_1.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_2_1_DEPRECATED.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_3_0.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_3_0_DEPRECATED.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_3_1.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/GL_3_2.py
/usr/share/pyshared/OpenGL/raw/GL/VERSION/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/WIN/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/WIN/phong_shading.py
/usr/share/pyshared/OpenGL/raw/GL/WIN/specular_fog.py
/usr/share/pyshared/OpenGL/raw/GL/__init__.py
/usr/share/pyshared/OpenGL/raw/GL/annotations.py
/usr/share/pyshared/OpenGL/raw/GL/constants.py
/usr/share/pyshared/OpenGL/raw/GLE/__init__.py
/usr/share/pyshared/OpenGL/raw/GLE/annotations.py
/usr/share/pyshared/OpenGL/raw/GLE/constants.py
/usr/share/pyshared/OpenGL/raw/GLEXT/TYPES_DEFINED.py
/usr/share/pyshared/OpenGL/raw/GLEXT/__init__.py
/usr/share/pyshared/OpenGL/raw/GLU/__init__.py
/usr/share/pyshared/OpenGL/raw/GLU/annotations.py
/usr/share/pyshared/OpenGL/raw/GLU/constants.py
/usr/share/pyshared/OpenGL/raw/GLUT/__init__.py
/usr/share/pyshared/OpenGL/raw/GLUT/annotations.py
/usr/share/pyshared/OpenGL/raw/GLUT/constants.py
/usr/share/pyshared/OpenGL/raw/GLX.py
/usr/share/pyshared/OpenGL/raw/WGL.py
/usr/share/pyshared/OpenGL/raw/_GLX.py
/usr/share/pyshared/OpenGL/raw/_GLX_ARB.py
/usr/share/pyshared/OpenGL/raw/_GLX_NV.py
/usr/share/pyshared/OpenGL/raw/_WGL.py
/usr/share/pyshared/OpenGL/raw/_WGL_ARB.py
/usr/share/pyshared/OpenGL/raw/_WGL_NV.py
/usr/share/pyshared/OpenGL/raw/__init__.py
/usr/share/pyshared/OpenGL/version.py
/usr/share/pyshared/OpenGL/wrapper.py
/usr/share/pyshared/PyOpenGL-3.0.1b2.egg-info