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

wrapper around Vulkan memory objects More...

#include <cs237-memory-obj.hpp>

Collaboration diagram for cs237::MemoryObj:

Public Member Functions

 MemoryObj (Application *app, vk::MemoryRequirements const &reqs)
 
 ~MemoryObj ()
 
void copyTo (const void *src, size_t offset, size_t sz)
 
void copyTo (const void *src)
 
size_t size () const
 the size of the memory object in bytes
 

Protected Attributes

Application_app
 the application
 
vk::DeviceMemory _mem
 the device memory object
 
size_t _sz
 the size of the memory object
 

Friends

class Buffer
 

Detailed Description

wrapper around Vulkan memory objects

Constructor & Destructor Documentation

◆ MemoryObj()

cs237::MemoryObj::MemoryObj ( Application app,
vk::MemoryRequirements const &  reqs 
)

◆ ~MemoryObj()

cs237::MemoryObj::~MemoryObj ( )

Member Function Documentation

◆ copyTo() [1/2]

void cs237::MemoryObj::copyTo ( const void *  src)
inline

copy data to the device memory object

Parameters
srcaddress of data to copy

◆ copyTo() [2/2]

void cs237::MemoryObj::copyTo ( const void *  src,
size_t  offset,
size_t  sz 
)
inline

copy data to a subrange of the device memory object

Parameters
srcaddress of data to copy
offsetoffset from the beginning of the memory object to copy the data to
szsize in bytes of the data to copy

◆ size()

size_t cs237::MemoryObj::size ( ) const
inline

the size of the memory object in bytes

Friends And Related Symbol Documentation

◆ Buffer

friend class Buffer
friend

Member Data Documentation

◆ _app

Application* cs237::MemoryObj::_app
protected

the application

◆ _mem

vk::DeviceMemory cs237::MemoryObj::_mem
protected

the device memory object

◆ _sz

size_t cs237::MemoryObj::_sz
protected

the size of the memory object


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