You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for example running (cl-glut-examples:misc-opengl-array) prints a bunch of warnings like
STYLE-WARNING:
bare references to struct types are deprecated. Please use (:POINTER
(:STRUCT
CL-GLUT-EXAMPLES::POSITION-COLOR)) or (:STRUCT
CL-GLUT-EXAMPLES::POSITION-COLOR) instead.
The text was updated successfully, but these errors were encountered:
As a consequence, alloc-gl-array now takes proper cffi struct types
as well as primitive types. Therefore, one has to write:
(gl:alloc-gl-array '(:struct position-color) 5)
instead of
(gl:alloc-gl-array 'position-color 5)
Closes3b#41
As a consequence, alloc-gl-array now takes proper cffi struct types
as well as primitive types. Therefore, one has to write:
(gl:alloc-gl-array '(:struct position-color) 5)
instead of
(gl:alloc-gl-array 'position-color 5)
Closes#41
for example running
(cl-glut-examples:misc-opengl-array)
prints a bunch of warnings likeThe text was updated successfully, but these errors were encountered: