mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: I5f81cb023b75e82bd3aff8e393f6b9463c767112 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
24 lines
511 B
C++
24 lines
511 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
|
|
namespace NEO {
|
|
|
|
class Device;
|
|
class GraphicsAllocation;
|
|
class SVMAllocsManager;
|
|
struct LinkerInput;
|
|
|
|
GraphicsAllocation *allocateGlobalsSurface(SVMAllocsManager *const svmAllocManager, Device &device,
|
|
size_t size, bool constant,
|
|
LinkerInput *const linkerInput, const void *initData);
|
|
|
|
} // namespace NEO
|