1
0
mirror of https://github.com/EduApps-CDG/OpenDX synced 2024-12-30 09:45:37 +01:00
OpenDX/src/dxvk/dxvk_buffer.h

38 lines
521 B
C
Raw Normal View History

2017-10-10 23:32:13 +02:00
#pragma once
#include "dxvk_resource.h"
namespace dxvk {
/**
* \brief Buffer create info
*
* The properties of a buffer that are
* passed to \ref DxvkDevice::createBuffer
*/
struct DxvkBufferCreateInfo {
/// Size of the buffer, in bytes
VkDeviceSize bufferSize;
};
/**
* \brief DXVK buffer
*
* A simple buffer resource that stores linear data.
*/
class DxvkBuffer : public DxvkResource {
public:
private:
};
}