mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +08:00

Change-Id: Iaec903af420f0a92f7d86e484c83300fb9c531ad Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
37 lines
939 B
C++
37 lines
939 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "command_stream/linear_stream.h"
|
|
|
|
#include "memory_manager/graphics_allocation.h"
|
|
|
|
namespace NEO {
|
|
|
|
LinearStream::LinearStream(GraphicsAllocation *gfxAllocation, void *buffer, size_t bufferSize)
|
|
: sizeUsed(0), maxAvailableSpace(bufferSize), buffer(buffer), graphicsAllocation(gfxAllocation) {
|
|
}
|
|
|
|
LinearStream::LinearStream(void *buffer, size_t bufferSize)
|
|
: LinearStream(nullptr, buffer, bufferSize) {
|
|
}
|
|
|
|
LinearStream::LinearStream(GraphicsAllocation *gfxAllocation)
|
|
: sizeUsed(0), graphicsAllocation(gfxAllocation) {
|
|
if (gfxAllocation) {
|
|
maxAvailableSpace = gfxAllocation->getUnderlyingBufferSize();
|
|
buffer = gfxAllocation->getUnderlyingBuffer();
|
|
} else {
|
|
maxAvailableSpace = 0;
|
|
buffer = nullptr;
|
|
}
|
|
}
|
|
|
|
LinearStream::LinearStream()
|
|
: LinearStream(nullptr) {
|
|
}
|
|
} // namespace NEO
|