adding texture test to tex_demo

This commit is contained in:
Blaise Tine
2021-03-17 09:52:33 -04:00
parent 676a13f30d
commit 2cbc1c4161
17 changed files with 654 additions and 632 deletions

View File

@@ -1,15 +1,14 @@
#ifndef _COMMON_H_
#define _COMMON_H_
#define KERNEL_ARG_DEV_MEM_ADDR 0x7ffff000
// #include <vortex.h>
struct kernel_arg_t {
uint32_t num_tasks;
uint32_t task_size;
uint32_t src0_ptr;
uint32_t src1_ptr;
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;
};