~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to source/tools/GL/libraries.gl

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'GLEW': set([
 
2
        'GLEW_ARB_depth_texture',
 
3
        'GLEW_ARB_fragment_program',
 
4
        'GLEW_ARB_fragment_shader',
 
5
        'GLEW_ARB_multitexture',
 
6
        'GLEW_ARB_shader_objects',
 
7
        'GLEW_ARB_texture_cube_map',
 
8
        'GLEW_ARB_texture_env_combine',
 
9
        'GLEW_ARB_texture_non_power_of_two',
 
10
        'GLEW_ARB_texture_query_lod',
 
11
        'GLEW_ARB_texture_rectangle',
 
12
        'GLEW_ARB_vertex_buffer_object',
 
13
        'GLEW_ARB_vertex_program',
 
14
        'GLEW_ARB_vertex_shader',
 
15
        'GLEW_ATI_pn_triangles',
 
16
        'GLEW_EXT_compiled_vertex_array',
 
17
        'GLEW_EXT_framebuffer_object',
 
18
        'GLEW_EXT_pixel_buffer_object',
 
19
        'GLEW_EXT_separate_specular_color',
 
20
        'GLEW_EXT_texture_filter_anisotropic',
 
21
        'GLEW_EXT_texture_rectangle',
 
22
        'GLEW_NV_texture_rectangle',
 
23
        'GLEW_VERSION_1_1',
 
24
        'GLEW_VERSION_1_2',
 
25
        'GLEW_VERSION_3_0',
 
26
        'glewInit',
 
27
        'glewIsSupported',
 
28
        'glxew',
 
29
        'wglew']),
 
30
 
 
31
'GLM': set([
 
32
        'GLM_COLOR',
 
33
        'GLM_FLAT',
 
34
        'GLM_MATERIAL',
 
35
        'GLM_NONE',
 
36
        'GLM_SMOOTH',
 
37
        'GLM_TEXTURE',
 
38
        'GLMgroup',
 
39
        'GLMmaterial',
 
40
        'GLMmodel',
 
41
        'GLMnode',
 
42
        'GLMtriangle',
 
43
        'glmAbs',
 
44
        'glmAddGroup',
 
45
        'glmBuildEdgePointsMap',
 
46
        'glmBuildNeighborsMap',
 
47
        'glmCross',
 
48
        'glmDelete',
 
49
        'glmDimensions',
 
50
        'glmDirName',
 
51
        'glmDot',
 
52
        'glmDraw',
 
53
        'glmDrawSelectedTriangles',
 
54
        'glmEqual',
 
55
        'glmFacetNormals',
 
56
        'glmFindGroup',
 
57
        'glmFindMaterial',
 
58
        'glmFirstPass',
 
59
        'glmInitTex',
 
60
        'glmLinearTexture',
 
61
        'glmList',
 
62
        'glmMax',
 
63
        'glmNormalize',
 
64
        'glmOptimize',
 
65
        'glmOptimizeVectors',
 
66
        'glmReadMTL',
 
67
        'glmReadOBJ',
 
68
        'glmReadPPM',
 
69
        'glmReverseWinding',
 
70
        'glmScale',
 
71
        'glmSecondPass',
 
72
        'glmSpheremapTexture',
 
73
        'glmTranslate',
 
74
        'glmUnitize',
 
75
        'glmUseTex',
 
76
        'glmVertexNormals',
 
77
        'glmWeld',
 
78
        'glmWeldVectors',
 
79
        'glmWriteMTL',
 
80
        'glmWriteOBJ']),
 
81
 
 
82
'GLU': set([
 
83
        'GLU_FILL',
 
84
        'GLU_INSIDE',
 
85
        'GLU_OUTSIDE',
 
86
        'GLU_SILHOUETTE',
 
87
        'GLU_SMOOTH',
 
88
        'GLUquadric',
 
89
        'GLUquadricObj',
 
90
        'gluBuild2DMipmaps',
 
91
        'gluCylinder',
 
92
        'gluDeleteQuadric',
 
93
        'gluDisk',
 
94
        'gluErrorString',
 
95
        'gluLookAt',
 
96
        'gluNewQuadric',
 
97
        'gluOrtho2D',
 
98
        'gluPerspective',
 
99
        'gluProject',
 
100
        'gluQuadricDrawStyle',
 
101
        'gluQuadricNormals',
 
102
        'gluQuadricOrientation',
 
103
        'gluScaleImage',
 
104
        'gluSphere',
 
105
        'gluUnProject']),
 
106
 
 
107
'GLUT': set([
 
108
        'glutBitmapCharacter',
 
109
        'glutBitmapLength',
 
110
        'glutCreateWindow',
 
111
        'glutDisplayFunc',
 
112
        'glutGet',
 
113
        'glutGetModifiers',
 
114
        'glutIdleFunc',
 
115
        'glutInit',
 
116
        'glutInitDisplayMode',
 
117
        'glutInitWindowPosition',
 
118
        'glutInitWindowSize',
 
119
        'glutKeyboardFunc',
 
120
        'glutMainLoop',
 
121
        'glutMotionFunc',
 
122
        'glutMouseFunc',
 
123
        'glutPostRedisplay',
 
124
        'glutReshape',
 
125
        'glutReshapeFunc',
 
126
        'glutSolidSphere',
 
127
        'glutSwapBuffers']),
 
128