mirror of
https://github.com/lxsang/Diya-API.git
synced 2024-12-28 12:28:21 +01:00
15 lines
261 B
Smalltalk
15 lines
261 B
Smalltalk
|
Extension { #name : #Array2D }
|
||
|
|
||
|
{ #category : #'*Diya' }
|
||
|
Array2D >> asGLBuffer [
|
||
|
|buffer i|
|
||
|
i := 1.
|
||
|
buffer := FFIExternalArray externalNewType: #float size: self size.
|
||
|
self asArray do:[:e|
|
||
|
buffer at:i put:e.
|
||
|
i := i+1
|
||
|
].
|
||
|
buffer autoRelease.
|
||
|
^buffer
|
||
|
]
|