texture-3d-data-target? ( object -- ? )


Vocabulary
gpu.textures

Inputs and outputs
objectan 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 ;