j2k-cuda-runtime 0.11.0

CUDA codec engine and Driver API runtime for j2k device adapters
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Internal kernel-parameter macros.

macro_rules! cuda_kernel_params {
    ($($arg:ident),+ $(,)?) => {
        [$(cuda_kernel_param(&mut $arg)),+]
    };
}