SWDEV-245533 - Implementing Mipmap array APIs

Change-Id: I222c8d0fcbd50cdefd702462e689463bb36366d2
This commit is contained in:
kjayapra-amd
2021-03-22 15:52:46 -04:00
committed by Karthik Jayaprakash
parent a2d4487cc6
commit 31d412c292
3 changed files with 367 additions and 54 deletions
+12 -8
View File
@@ -116,14 +116,18 @@ typedef struct hipArray* hipArray_t;
typedef hipArray_t hiparray;
typedef const struct hipArray* hipArray_const_t;
// TODO: It needs to be modified since it was just copied from hipArray.
struct hipMipmappedArray {
void* data; // FIXME: generalize this
struct hipChannelFormatDesc desc;
unsigned int width;
unsigned int height;
unsigned int depth;
};
typedef struct hipMipmappedArray {
void* data;
struct hipChannelFormatDesc desc;
unsigned int type;
unsigned int width;
unsigned int height;
unsigned int depth;
unsigned int min_mipmap_level;
unsigned int max_mipmap_level;
unsigned int flags;
enum hipArray_Format format;
} hipMipmappedArray;
typedef struct hipMipmappedArray* hipMipmappedArray_t;