Mantis - Croquet
|
||||||||||
Viewing Issue Advanced Details | ||||||||||
|
||||||||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: | |||||
4006 | Hedgehog | minor | always | 07-04-06 09:05 | 10-08-06 00:52 | |||||
|
||||||||||
Reporter: | espin | Platform: | ||||||||
Assigned To: | andreas | OS: | ||||||||
Priority: | normal | OS Version: | ||||||||
Status: | resolved | Product Version: | ||||||||
Product Build: | Resolution: | fixed | ||||||||
Projection: | none | |||||||||
ETA: | none | Fixed in Version: | ||||||||
|
||||||||||
Summary: | 0004006: OpenGL>>extensions | |||||||||
Description: |
The heuristics extensions additions in OpenGL>>extensions should be an array of symbols, not of Strings. For examples: OpenGL>>extensions "..." version >= 1.1 ifTrue:[ extensions addAll: #( 'GL_EXT_blend_logic_op' 'GL_EXT_copy_texture' 'GL_EXT_polygon_offset' "..." should become OpenGL>>extensions "..." version >= 1.1 ifTrue:[ extensions addAll: #( #'GL_EXT_blend_logic_op' #'GL_EXT_copy_texture' #'GL_EXT_polygon_offset' "..." |
|||||||||
Steps To Reproduce: | ||||||||||
Additional Information: |
In fact the list of extensions contains symbols extensions := extensions collect:[:str| str asSymbol]. see at the beginning of OpenGL>>extensions: OpenGL>>extensions "..." extensions := (self glGetString: GLExtensions) fromCString. extensions := extensions findTokens: ' '. extensions := extensions collect:[:str| str asSymbol]. |
|||||||||
Relationships |
| |||||||||
Attached Files: |
Notes | |||||
|
|||||
|
|