mirror of
https://github.com/lxsang/Diya-API.git
synced 2024-12-27 03:48:21 +01:00
19 lines
325 B
Smalltalk
19 lines
325 B
Smalltalk
|
Class {
|
||
|
#name : #UniformMatrix4fv,
|
||
|
#superclass : #OpenGLSLUniform,
|
||
|
#pools : [
|
||
|
'OpenGLConstants',
|
||
|
'OpenGLTypes'
|
||
|
],
|
||
|
#category : #'Diya-OpenGL'
|
||
|
}
|
||
|
|
||
|
{ #category : #accessing }
|
||
|
UniformMatrix4fv >> setUniformValue [
|
||
|
OpenGLSLUniform
|
||
|
uniformMatrix4fv: location
|
||
|
count: 1
|
||
|
transpose: GL_FALSE
|
||
|
value: value getHandle
|
||
|
]
|