Anonymous | Login | 03-02-2021 23:43 UTC |
Main | My View | View Issues | Change Log | Docs |
Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | ||||||||||||
ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||||||||
0004006 | [Croquet] Hedgehog | minor | always | 07-04-06 09:05 | 10-08-06 00:52 | ||||||||
Reporter | espin | View Status | public | ||||||||||
Assigned To | andreas | ||||||||||||
Priority | normal | Resolution | fixed | ||||||||||
Status | resolved | ||||||||||||
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' "..." |
||||||||||||
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]. |
||||||||||||
Attached Files | |||||||||||||
|
![]() |
||||||
|
Mantis 1.0.8[^]
Copyright © 2000 - 2007 Mantis Group
41 total queries executed. 33 unique queries executed. |