32 lines
804 B
C++
32 lines
804 B
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/command_stream/linear_stream.h"
|
|
#include "runtime/memory_manager/graphics_allocation.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
LinearStream::LinearStream(void *buffer, size_t bufferSize)
|
|
: sizeUsed(0), maxAvailableSpace(bufferSize), buffer(buffer), graphicsAllocation(nullptr) {
|
|
}
|
|
|
|
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 OCLRT
|