15 lines
268 B
C
15 lines
268 B
C
#ifndef _COMMON_H_
|
|
#define _COMMON_H_
|
|
struct kernel_arg_t {
|
|
uint32_t num_tasks;
|
|
uint32_t src_width;
|
|
uint32_t src_height;
|
|
uint32_t src_pitch;
|
|
uint32_t dst_width;
|
|
uint32_t dst_height;
|
|
uint32_t dst_pitch;
|
|
uint32_t src_ptr;
|
|
uint32_t dst_ptr;
|
|
};
|
|
|
|
#endif |