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

15 lines
287 B
Smalltalk
Raw Permalink Normal View History

2022-02-15 18:04:54 +01:00
Class {
#name : #Uniform2i,
#superclass : #OpenGLSLUniform,
#pools : [
'OpenGLConstants',
'OpenGLTypes'
],
#category : #'Diya-OpenGL'
}
{ #category : #accessing }
2022-03-15 19:11:19 +01:00
Uniform2i >> setUniformValue: value [
2022-02-15 18:04:54 +01:00
OpenGLSLUniform uniform2i: location value: value first value: value last
]