Handbook
Glossary
buffer-ptr>range ( buffer-ptr -- buffer-range )
Vocabulary
gpu
.
buffers
Inputs
buffer-ptr
a
buffer-ptr
Outputs
buffer-range
a
buffer-range
Word description
Converts a
buffer-ptr
into a
buffer-range
spanning from the
offset
referenced by the
buffer-ptr
to the end of the underlying
buffer
.
Definition
USING:
accessors
kernel
math
;
IN:
gpu.buffers
:
buffer-ptr>range
( buffer-ptr -- buffer-range )
[
buffer>>
]
[
offset>>
]
bi
2dup
[
buffer-size
]
dip
-
buffer-range
boa
;
inline