mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-12-29 11:01:23 +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 {
|
namespace gs {
|
||||||
class vertex_buffer {
|
class vertex_buffer {
|
||||||
public:
|
public:
|
||||||
#pragma region Constructor& Destructor
|
|
||||||
virtual ~vertex_buffer();
|
virtual ~vertex_buffer();
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
@ -65,9 +64,6 @@ namespace gs {
|
||||||
*/
|
*/
|
||||||
vertex_buffer(gs_vertbuffer_t* other);
|
vertex_buffer(gs_vertbuffer_t* other);
|
||||||
|
|
||||||
#pragma endregion Constructor& Destructor
|
|
||||||
|
|
||||||
#pragma region Copy / Move Constructors
|
|
||||||
// Copy Constructor & Assignments
|
// Copy Constructor & Assignments
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
@ -103,7 +99,6 @@ namespace gs {
|
||||||
* \param other
|
* \param other
|
||||||
*/
|
*/
|
||||||
void operator=(vertex_buffer const&& other);
|
void operator=(vertex_buffer const&& other);
|
||||||
#pragma endregion Copy / Move Constructors
|
|
||||||
|
|
||||||
void resize(uint32_t new_size);
|
void resize(uint32_t new_size);
|
||||||
|
|
||||||
|
@ -159,11 +154,9 @@ namespace gs {
|
||||||
*/
|
*/
|
||||||
vec4* get_uv_layer(size_t idx);
|
vec4* get_uv_layer(size_t idx);
|
||||||
|
|
||||||
#pragma region Update / Grab GS object
|
|
||||||
gs_vertbuffer_t* update();
|
gs_vertbuffer_t* update();
|
||||||
|
|
||||||
gs_vertbuffer_t* update(bool refreshGPU);
|
gs_vertbuffer_t* update(bool refreshGPU);
|
||||||
#pragma endregion Update / Grab GS object
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
uint32_t m_size;
|
uint32_t m_size;
|
||||||
|
|
Loading…
Reference in a new issue