2017-09-17 19:55:16 +00:00
|
|
|
/*
|
|
|
|
* Modern effects for a modern Streamer
|
|
|
|
* Copyright (C) 2017 Michael Fabian Dirks
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2019-01-14 10:23:21 +00:00
|
|
|
#include "gs-indexbuffer.hpp"
|
2019-09-04 00:59:04 +00:00
|
|
|
#include <stdexcept>
|
2019-01-14 10:23:21 +00:00
|
|
|
#include "gs-limits.hpp"
|
2019-04-02 22:16:13 +00:00
|
|
|
#include "obs/gs/gs-helper.hpp"
|
2019-01-14 10:23:21 +00:00
|
|
|
|
|
|
|
// OBS
|
|
|
|
#ifdef _MSC_VER
|
2018-11-07 14:24:25 +00:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable : 4201)
|
2019-01-14 10:23:21 +00:00
|
|
|
#endif
|
2018-11-07 14:24:25 +00:00
|
|
|
#include <obs.h>
|
2019-01-14 10:23:21 +00:00
|
|
|
#ifdef _MSC_VER
|
2018-11-07 14:24:25 +00:00
|
|
|
#pragma warning(pop)
|
2019-01-14 10:23:21 +00:00
|
|
|
#endif
|
2017-09-17 19:55:16 +00:00
|
|
|
|
2018-11-07 14:24:25 +00:00
|
|
|
gs::index_buffer::index_buffer(uint32_t maximumVertices)
|
|
|
|
{
|
2017-09-17 19:55:16 +00:00
|
|
|
this->reserve(maximumVertices);
|
2019-04-02 22:16:13 +00:00
|
|
|
auto gctx = 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);
|
2017-09-17 19:55:16 +00:00
|
|
|
}
|
|
|
|
|
2018-03-20 11:43:37 +00:00
|
|
|
gs::index_buffer::index_buffer() : index_buffer(MAXIMUM_VERTICES) {}
|
2017-09-17 19:55:16 +00:00
|
|
|
|
2018-11-07 14:24:25 +00:00
|
|
|
gs::index_buffer::index_buffer(index_buffer& other) : index_buffer((uint32_t)other.size())
|
|
|
|
{
|
2017-09-17 19:55:16 +00:00
|
|
|
std::copy(other.begin(), other.end(), this->end());
|
|
|
|
}
|
|
|
|
|
2018-11-07 14:24:25 +00:00
|
|
|
gs::index_buffer::index_buffer(std::vector<uint32_t>& other) : index_buffer((uint32_t)other.size())
|
|
|
|
{
|
2017-09-17 19:55:16 +00:00
|
|
|
std::copy(other.begin(), other.end(), this->end());
|
|
|
|
}
|
|
|
|
|
2018-11-07 14:24:25 +00:00
|
|
|
gs::index_buffer::~index_buffer()
|
|
|
|
{
|
2019-04-02 22:16:13 +00:00
|
|
|
auto gctx = gs::context();
|
2019-08-04 14:20:26 +00:00
|
|
|
gs_indexbuffer_destroy(_index_buffer);
|
2017-09-17 19:55:16 +00:00
|
|
|
}
|
|
|
|
|
2018-11-07 14:24:25 +00:00
|
|
|
gs_indexbuffer_t* gs::index_buffer::get()
|
|
|
|
{
|
2017-09-17 19:55:16 +00:00
|
|
|
return get(true);
|
|
|
|
}
|
|
|
|
|
2018-11-07 14:24:25 +00:00
|
|
|
gs_indexbuffer_t* gs::index_buffer::get(bool refreshGPU)
|
|
|
|
{
|
2017-09-17 19:55:16 +00:00
|
|
|
if (refreshGPU) {
|
2019-04-02 22:16:13 +00:00
|
|
|
auto gctx = gs::context();
|
2019-08-04 14:20:26 +00:00
|
|
|
gs_indexbuffer_flush(_index_buffer);
|
2017-09-17 19:55:16 +00:00
|
|
|
}
|
2019-08-04 14:20:26 +00:00
|
|
|
return _index_buffer;
|
2017-09-17 19:55:16 +00:00
|
|
|
}
|