1
0
mirror of https://github.com/lxsang/Diya-API.git synced 2024-12-26 19:38:22 +01:00
Diya-API/Diya/UniformMatrix4fv.class.st

19 lines
340 B
Smalltalk
Raw Permalink Normal View History

Class {
#name : #UniformMatrix4fv,
#superclass : #OpenGLSLUniform,
#pools : [
'OpenGLConstants',
'OpenGLTypes'
],
#category : #'Diya-OpenGL'
}
{ #category : #accessing }
2022-03-15 19:11:19 +01:00
UniformMatrix4fv >> setUniformValue: value [
OpenGLSLUniform
uniformMatrix4fv: location
count: 1
2022-03-05 11:55:20 +01:00
transpose: value first
value: value last getHandle
]