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

53 lines
1.5 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-vertex.hpp"
#include "warning-disable.hpp"
#include <stdexcept>
#include "warning-enable.hpp"
2021-06-08 02:38:24 +00:00
streamfx::obs::gs::vertex::vertex()
2019-08-04 14:20:26 +00:00
: position(nullptr), normal(nullptr), tangent(nullptr), color(nullptr), _has_store(true), _store(nullptr)
{
2021-06-08 02:18:02 +00:00
_store =
streamfx::util::malloc_aligned(16, sizeof(vec3) * 3 + sizeof(uint32_t) + sizeof(vec4) * MAXIMUM_UVW_LAYERS);
2020-04-08 21:38:42 +00:00
std::size_t offset = 0;
2019-08-04 14:20:26 +00:00
position = reinterpret_cast<vec3*>(reinterpret_cast<char*>(_store) + offset);
offset += sizeof(vec3);
2019-08-04 14:20:26 +00:00
normal = reinterpret_cast<vec3*>(reinterpret_cast<char*>(_store) + offset);
offset += sizeof(vec3);
2019-08-04 14:20:26 +00:00
tangent = reinterpret_cast<vec3*>(reinterpret_cast<char*>(_store) + offset);
offset += sizeof(vec3);
2019-08-04 14:20:26 +00:00
color = reinterpret_cast<uint32_t*>(reinterpret_cast<char*>(_store) + offset);
offset += sizeof(uint32_t);
2020-04-08 21:38:42 +00:00
for (std::size_t n = 0; n < MAXIMUM_UVW_LAYERS; n++) {
2019-08-04 14:20:26 +00:00
uv[n] = reinterpret_cast<vec4*>(reinterpret_cast<char*>(_store) + offset);
offset += sizeof(vec4);
}
}
2021-06-08 02:38:24 +00:00
streamfx::obs::gs::vertex::~vertex()
{
2019-08-04 14:20:26 +00:00
if (_has_store) {
2021-06-08 02:18:02 +00:00
streamfx::util::free_aligned(_store);
}
}
2021-06-08 02:38:24 +00:00
streamfx::obs::gs::vertex::vertex(vec3* p, vec3* n, vec3* t, uint32_t* col, vec4* uvs[MAXIMUM_UVW_LAYERS])
2019-08-04 14:20:26 +00:00
: position(p), normal(n), tangent(t), color(col), _has_store(false)
{
if (uvs != nullptr) {
2020-04-08 21:38:42 +00:00
for (std::size_t idx = 0; idx < MAXIMUM_UVW_LAYERS; idx++) {
this->uv[idx] = uvs[idx];
}
}
}