mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 17:29:14 +08:00
18 lines
374 B
C++
18 lines
374 B
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/memory_manager/graphics_allocation.h"
|
|
|
|
namespace NEO {
|
|
struct AppResourceHelper {
|
|
public:
|
|
static const char *getResourceTagStr(AllocationType type);
|
|
static void copyResourceTagStr(char *dst, AllocationType type, size_t size);
|
|
};
|
|
|
|
} // namespace NEO
|