image-format ( image -- internal-format format type ) (original) (raw)

image-format ( image -- internal-format format type )

Vocabulary
opengl.textures

Inputs

image an object

Outputs

internal-format an object
format an object
type an object

Definition

USING: accessors kernel ;

IN: opengl.textures

: image-format ( image -- internal-format format type )
[ component-order>> ] [ component-type>> ] bi (image-format)
;