2021-04-24 00:43:48 +08:00
|
|
|
/*
|
2022-02-04 21:59:01 +08:00
|
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
2021-04-24 00:43:48 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-05-18 03:04:23 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "shared/source/memory_manager/allocation_type.h"
|
|
|
|
|
|
|
|
#include <cstddef>
|
2021-04-24 00:43:48 +08:00
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
struct AppResourceHelper {
|
|
|
|
public:
|
2022-02-04 21:59:01 +08:00
|
|
|
static const char *getResourceTagStr(AllocationType type);
|
|
|
|
static void copyResourceTagStr(char *dst, AllocationType type, size_t size);
|
2021-04-24 00:43:48 +08:00
|
|
|
};
|
|
|
|
} // namespace NEO
|