texture-rectangle? ( object -- ? )


Vocabulary
gpu.textures

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the texture-rectangle class.

Definition
USING: classes.tuple.private ;

IN: gpu.textures

: texture-rectangle? ( object -- ? )
\ texture-rectangle 13 tuple-instance? ;