hyporo-cpp/source/hyporo/gpu/buffer.cpp

30 lines
411 B
C++
Raw Normal View History

2022-10-03 18:51:34 +05:00
#include "buffer.hpp"
namespace hpr::gpu
{
Buffer::Buffer() :
Context {DeviceAPI::Unknown},
p_type {BufferType::Undefined},
p_size {0},
p_stride {0}
{}
Buffer::Buffer(DeviceAPI api) :
Context {api},
p_type {BufferType::Undefined},
p_size {0},
p_stride {0}
{}
Buffer::~Buffer()
{}
const BufferType Buffer::type() const
{
return p_type;
}
}