| 43 | * @brief Data block copying directions |
| 44 | */ |
| 45 | typedef enum DBlockCopyDirection { |
| 46 | /** Copy from the global to the local memory */ |
| 47 | DBLOCK_GLOBAL_TO_LOCAL, |
| 48 | /** Copy from the local to the global memory */ |
| 49 | DBLOCK_LOCAL_TO_GLOBAL, |
| 50 | /** Copy from the global memory to an image */ |
| 51 | DBLOCK_GLOBAL_TO_IMAGE, |
| 52 | /** Copy from the local memory to an image */ |
| 53 | DBLOCK_LOCAL_TO_IMAGE |
| 54 | } DBlockCopyDirection; |
| 55 | |
| 56 | /** |
| 57 | * @internal |
nothing calls this directly
no outgoing calls
no test coverage detected