mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-11 06:15:05 +00:00
36cd5bbf21
Simple manager with automatic updating whenever the object is requested.
115 lines
2.9 KiB
C++
115 lines
2.9 KiB
C++
/*
|
|
* 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
|
|
*/
|
|
|
|
#include "gs-sampler.h"
|
|
|
|
GS::Sampler::Sampler() {
|
|
m_dirty = true;
|
|
m_samplerInfo = { GS_FILTER_LINEAR, GS_ADDRESS_WRAP, GS_ADDRESS_WRAP, GS_ADDRESS_WRAP, 1, 0 };
|
|
m_samplerState = nullptr;
|
|
}
|
|
|
|
GS::Sampler::~Sampler() {
|
|
if (m_samplerState)
|
|
gs_samplerstate_destroy(m_samplerState);
|
|
}
|
|
|
|
void GS::Sampler::SetSampleFilter(gs_sample_filter v) {
|
|
m_dirty = true;
|
|
m_samplerInfo.filter = v;
|
|
}
|
|
|
|
gs_sample_filter GS::Sampler::GetSampleFilter() {
|
|
return m_samplerInfo.filter;
|
|
}
|
|
|
|
void GS::Sampler::SetAddressModeU(gs_address_mode v) {
|
|
m_dirty = true;
|
|
m_samplerInfo.address_u = v;
|
|
}
|
|
|
|
gs_address_mode GS::Sampler::GetAddressModeU() {
|
|
return m_samplerInfo.address_u;
|
|
}
|
|
|
|
void GS::Sampler::SetAddressModeV(gs_address_mode v) {
|
|
m_dirty = true;
|
|
m_samplerInfo.address_v = v;
|
|
}
|
|
|
|
gs_address_mode GS::Sampler::GetAddressModeV() {
|
|
return m_samplerInfo.address_v;
|
|
}
|
|
|
|
void GS::Sampler::SetAddressModeW(gs_address_mode v) {
|
|
m_dirty = true;
|
|
m_samplerInfo.address_w = v;
|
|
}
|
|
|
|
gs_address_mode GS::Sampler::GetAddressModeW() {
|
|
return m_samplerInfo.address_w;
|
|
}
|
|
|
|
void GS::Sampler::SetMaxAnisotropy(int v) {
|
|
m_dirty = true;
|
|
m_samplerInfo.max_anisotropy = v;
|
|
}
|
|
|
|
int GS::Sampler::GetMaxAnisotropy() {
|
|
return m_samplerInfo.max_anisotropy;
|
|
}
|
|
|
|
void GS::Sampler::SetBorderColor(uint32_t v) {
|
|
m_dirty = true;
|
|
m_samplerInfo.border_color = v;
|
|
}
|
|
|
|
void GS::Sampler::SetBorderColor(uint8_t r, uint8_t g, uint8_t b, uint8_t a) {
|
|
m_dirty = true;
|
|
m_samplerInfo.border_color = a << 24 | r << 16 | g << 8 | b;
|
|
}
|
|
|
|
uint32_t GS::Sampler::GetBorderColor() {
|
|
return m_samplerInfo.border_color;
|
|
}
|
|
|
|
uint8_t GS::Sampler::GetBorderColor(bool r, bool g, bool b, bool a) {
|
|
if (a)
|
|
return (m_samplerInfo.border_color >> 24) & 0xFF;
|
|
if (r)
|
|
return (m_samplerInfo.border_color >> 16) & 0xFF;
|
|
if (g)
|
|
return (m_samplerInfo.border_color >> 8) & 0xFF;
|
|
if (b)
|
|
return m_samplerInfo.border_color & 0xFF;
|
|
return 0;
|
|
}
|
|
|
|
gs_sampler_state* GS::Sampler::Refresh() {
|
|
gs_samplerstate_destroy(m_samplerState);
|
|
m_samplerState = gs_samplerstate_create(&m_samplerInfo);
|
|
m_dirty = false;
|
|
return m_samplerState;
|
|
}
|
|
|
|
gs_sampler_state* GS::Sampler::GetObject() {
|
|
if (m_dirty)
|
|
return Refresh();
|
|
return m_samplerState;
|
|
}
|