Contents

didModifyRange:

Informs the GPU that the CPU has modified a section of the buffer.

Declaration

- (void) didModifyRange:(NSRange) range;

Parameters

  • range:

    The range of bytes that were modified.

Mentioned in

Discussion

If you write information to a buffer created with the MTLStorageMode.managed storage mode, you need to call this method to inform the GPU that the information has changed. If you execute GPU commands that read from the modified sections without calling this method first, the behavior is undefined.