obs-StreamFX/source/obs/gs/gs-indexbuffer.cpp

52 lines
1.4 KiB
C++
Raw Normal View History

// AUTOGENERATED COPYRIGHT HEADER START
// Copyright (C) 2019-2023 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
// AUTOGENERATED COPYRIGHT HEADER END
#include "gs-indexbuffer.hpp"
#include "gs-limits.hpp"
#include "obs/gs/gs-helper.hpp"
#include "warning-disable.hpp"
#include <stdexcept>
#include "warning-enable.hpp"
2021-06-08 02:38:24 +00:00
streamfx::obs::gs::index_buffer::index_buffer(uint32_t maximumVertices)
2018-11-07 14:24:25 +00:00
{
this->reserve(maximumVertices);
2021-06-08 02:38:24 +00:00
auto gctx = streamfx::obs::gs::context();
2019-08-04 14:20:26 +00:00
_index_buffer = gs_indexbuffer_create(gs_index_type::GS_UNSIGNED_LONG, this->data(), maximumVertices, GS_DYNAMIC);
}
2021-06-08 02:38:24 +00:00
streamfx::obs::gs::index_buffer::index_buffer() : index_buffer(MAXIMUM_VERTICES) {}
2021-06-08 02:38:24 +00:00
streamfx::obs::gs::index_buffer::index_buffer(index_buffer& other) : index_buffer(static_cast<uint32_t>(other.size()))
2018-11-07 14:24:25 +00:00
{
std::copy(other.begin(), other.end(), this->end());
}
2021-06-08 02:38:24 +00:00
streamfx::obs::gs::index_buffer::index_buffer(std::vector<uint32_t>& other)
: index_buffer(static_cast<uint32_t>(other.size()))
2018-11-07 14:24:25 +00:00
{
std::copy(other.begin(), other.end(), this->end());
}
2021-06-08 02:38:24 +00:00
streamfx::obs::gs::index_buffer::~index_buffer()
2018-11-07 14:24:25 +00:00
{
2021-06-08 02:38:24 +00:00
auto gctx = streamfx::obs::gs::context();
2019-08-04 14:20:26 +00:00
gs_indexbuffer_destroy(_index_buffer);
}
2021-06-08 02:38:24 +00:00
gs_indexbuffer_t* streamfx::obs::gs::index_buffer::get()
2018-11-07 14:24:25 +00:00
{
return get(true);
}
2021-06-08 02:38:24 +00:00
gs_indexbuffer_t* streamfx::obs::gs::index_buffer::get(bool refreshGPU)
2018-11-07 14:24:25 +00:00
{
if (refreshGPU) {
2021-06-08 02:38:24 +00:00
auto gctx = streamfx::obs::gs::context();
2019-08-04 14:20:26 +00:00
gs_indexbuffer_flush(_index_buffer);
}
2019-08-04 14:20:26 +00:00
return _index_buffer;
}