mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
gs-vertexbuffer: Remove #pragma region
This commit is contained in:
parent
8a897c8898
commit
4c1e66e27b
1 changed files with 0 additions and 7 deletions
|
@ -34,7 +34,6 @@ extern "C" {
|
|||
namespace gs {
|
||||
class vertex_buffer {
|
||||
public:
|
||||
#pragma region Constructor& Destructor
|
||||
virtual ~vertex_buffer();
|
||||
|
||||
/*!
|
||||
|
@ -65,9 +64,6 @@ namespace gs {
|
|||
*/
|
||||
vertex_buffer(gs_vertbuffer_t* other);
|
||||
|
||||
#pragma endregion Constructor& Destructor
|
||||
|
||||
#pragma region Copy / Move Constructors
|
||||
// Copy Constructor & Assignments
|
||||
|
||||
/*!
|
||||
|
@ -103,7 +99,6 @@ namespace gs {
|
|||
* \param other
|
||||
*/
|
||||
void operator=(vertex_buffer const&& other);
|
||||
#pragma endregion Copy / Move Constructors
|
||||
|
||||
void resize(uint32_t new_size);
|
||||
|
||||
|
@ -159,11 +154,9 @@ namespace gs {
|
|||
*/
|
||||
vec4* get_uv_layer(size_t idx);
|
||||
|
||||
#pragma region Update / Grab GS object
|
||||
gs_vertbuffer_t* update();
|
||||
|
||||
gs_vertbuffer_t* update(bool refreshGPU);
|
||||
#pragma endregion Update / Grab GS object
|
||||
|
||||
private:
|
||||
uint32_t m_size;
|
||||
|
|
Loading…
Reference in a new issue