CMSC23700 Common Code Library
Support code for CS23700 programming projects
Loading...
Searching...
No Matches
cs237::Buffer Class Reference

A base class for buffer objects of all kinds. More...

#include <cs237-buffer.hpp>

Inheritance diagram for cs237::Buffer:
Collaboration diagram for cs237::Buffer:

Public Member Functions

vk::Buffer vkBuffer () const
 get the Vulkan buffer object for this buffer
 
const MemoryObjmemory () const
 get the memory object for this buffer
 
vk::MemoryRequirements requirements ()
 get the memory requirements of this buffer
 

Protected Member Functions

 Buffer (Application *app, vk::BufferUsageFlags usage, size_t sz)
 
 ~Buffer ()
 destructor
 
void _copyTo (const void *src, size_t offset, size_t sz)
 
void _copyTo (const void *src)
 

Protected Attributes

Application_app
 the application
 
vk::Buffer _buf
 the Vulkan buffer object
 
MemoryObj_mem
 the Vulkan memory object that holds the buffer
 

Detailed Description

A base class for buffer objects of all kinds.

Constructor & Destructor Documentation

◆ Buffer()

cs237::Buffer::Buffer ( Application app,
vk::BufferUsageFlags  usage,
size_t  sz 
)
inlineprotected

constructor

Parameters
appthe owning application object
usagespecify the purpose of the buffer object
szthe buffer's size in bytes

◆ ~Buffer()

cs237::Buffer::~Buffer ( )
inlineprotected

destructor

Member Function Documentation

◆ _copyTo() [1/2]

void cs237::Buffer::_copyTo ( const void *  src)
inlineprotected

copy data to the device memory object

Parameters
srcaddress of data to copy

◆ _copyTo() [2/2]

void cs237::Buffer::_copyTo ( const void *  src,
size_t  offset,
size_t  sz 
)
inlineprotected

copy data to a subrange of the device memory object

Parameters
srcaddress of data to copy
offsetoffset (in bytes) from the beginning of the buffer to copy the data to
szsize in bytes of the data to copy

◆ memory()

const MemoryObj * cs237::Buffer::memory ( ) const
inline

get the memory object for this buffer

◆ requirements()

vk::MemoryRequirements cs237::Buffer::requirements ( )
inline

get the memory requirements of this buffer

◆ vkBuffer()

vk::Buffer cs237::Buffer::vkBuffer ( ) const
inline

get the Vulkan buffer object for this buffer

Member Data Documentation

◆ _app

Application* cs237::Buffer::_app
protected

the application

◆ _buf

vk::Buffer cs237::Buffer::_buf
protected

the Vulkan buffer object

◆ _mem

MemoryObj* cs237::Buffer::_mem
protected

the Vulkan memory object that holds the buffer


The documentation for this class was generated from the following file: