Factor Documentation
|
Home
|
Glossary
|
Search
factorcode.org
texture-3d-data-target? ( object -- ? )
Vocabulary
gpu.textures
Inputs and outputs
object
an
object
?
a boolean
Word description
Tests if the object is an instance of the
texture-3d-data-target
class.
Definition
USING:
kernel
;
IN:
gpu.textures
:
texture-3d-data-target?
( object -- ? )
dup
texture-2d-array?
[
drop
t
]
[
texture-3d?
]
if
;