|
Kanzi Graphics Engine
|
Generic shiffle functions. More...
Macros | |
| #define | kzcShuffleArray(buffer_param, length_param) |
| Shuffles the given buffer of elementCount elements. More... | |
| #define | kzcShuffleArrayWithRandom(random_param, buffer_param, length_param) |
| Shuffles the given buffer of elementCount elements with given random number generator. More... | |
Functions | |
| void | kzcShuffle (void *buffer, kzUint elementCount, kzUint elementSize) |
| Shuffles the given buffer of elementCount elements, each of size elementSize. More... | |
| void | kzcShuffleWithRandom (struct KzcRandom *random, void *buffer, kzUint elementCount, kzUint elementSize) |
| Shuffles the given buffer of elementCount elements, each of size elementSize. More... | |
Generic shiffle functions.
Copyright 2008-2019 by Rightware. All rights reserved.
| #define kzcShuffleArray | ( | buffer_param, | |
| length_param | |||
| ) |
Shuffles the given buffer of elementCount elements.
Size of the elements is determined automatically.
| #define kzcShuffleArrayWithRandom | ( | random_param, | |
| buffer_param, | |||
| length_param | |||
| ) |
Shuffles the given buffer of elementCount elements with given random number generator.
Size of the elements is determined automatically.
Shuffles the given buffer of elementCount elements, each of size elementSize.