Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5098 clevermous 1
 
2
limitations. The non mentionned functions are *not* implemented and
3
must not be used.
4
5
 
6
 
7
8
 
9
10
 
11
GL_LIGHTx, GL_POLYGON_OFFSET_FILL, GL_POLYGON_OFFSET_POINT,
12
GL_POLYGON_OFFSET_LINE
13
14
 
15
 
16
  other primitives, Z buffer use is assumed.  The DepthMode is
17
  hardcoded as GL_LESS (OpenGL default).
18
19
 
20
21
 
22
23
 
24
25
 
26
27
 
28
29
 
30
31
 
32
33
 
34
between glBegin/glEnd.
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
in TinyGL.
63
64
 
65
             glPushMatrix / glPopMatrix / glRotatef / glTranslatef / glScalef /
66
             glFrustum
67
68
 
69
70
 
71
72
 
73
system) to resize the Z buffer and the ximage. Made optional in
74
version 0.2.
75
76
 
77
78
 
79
80
 
81
82
 
83
can be redefined, by *not* the initial z value.
84
85
 
86
87
 
88
89
 
90
91
 
92
93
 
94
95
 
96
TinyGL.
97
98
 
99
100
 
101
internally resized to 256x256 so you'd better use that size. No
102
mipmapping is implemented although it will come if asked. No borders
103
are implemented.
104
105
 
106
107
 
108
asked.
109
110
 
111
 
112
113
 
114
implemented:
115
116
 
117
  glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
118
  glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
119
  glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
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
GL_MAX_PROJECTION_STACK_DEPTH, GL_MAX_LIGHTS, GL_MAX_TEXTURE_SIZE,
147
GL_MAX_TEXTURE_STACK_DEPTH
148
149
 
150
151
 
152
GL_LINE_WIDTH, GL_LINE_WIDTH_RANGE, GL_POINT_SIZE, GL_POINT_SIZE_RANGE
153
154
 
155
156
 
157
158
 
159
160
 
161
162
 
163
             glColorPointer, glTexureCoordPointer
164
165
 
166
167
 
168
169
 
170
171
 
172
 
173
174
 
175
176
 
177
178
 
179
attribute list is ignored.
180
181
 
182
183
 
184
185
 
186
187
 
188
189
 
190
191
 
192
'None' parameters.
193
194
 
195
 
196
197
 
198
199
 
200
201
 
202
203
 
204
 
205