2018-01-19 04:06:42 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2020-04-02 15:02:01 +00:00
|
|
|
#include "common.hpp"
|
2018-01-19 04:06:42 +00:00
|
|
|
|
2021-06-08 02:38:24 +00:00
|
|
|
namespace streamfx::obs::gs {
|
2018-03-20 11:43:37 +00:00
|
|
|
class sampler {
|
2018-01-19 04:06:42 +00:00
|
|
|
public:
|
2018-03-20 11:43:37 +00:00
|
|
|
sampler();
|
|
|
|
~sampler();
|
2018-01-19 04:06:42 +00:00
|
|
|
|
2018-11-07 14:24:25 +00:00
|
|
|
void set_filter(gs_sample_filter v);
|
2018-03-20 11:43:37 +00:00
|
|
|
gs_sample_filter get_filter();
|
2018-01-19 04:06:42 +00:00
|
|
|
|
2018-11-07 14:24:25 +00:00
|
|
|
void set_address_mode_u(gs_address_mode v);
|
2018-03-20 11:43:37 +00:00
|
|
|
gs_address_mode get_address_mode_u();
|
2018-01-19 04:06:42 +00:00
|
|
|
|
2018-11-07 14:24:25 +00:00
|
|
|
void set_address_mode_v(gs_address_mode v);
|
2018-03-20 11:43:37 +00:00
|
|
|
gs_address_mode get_address_mode_v();
|
2018-01-19 04:06:42 +00:00
|
|
|
|
2018-11-07 14:24:25 +00:00
|
|
|
void set_address_mode_w(gs_address_mode v);
|
2018-03-20 11:43:37 +00:00
|
|
|
gs_address_mode get_address_mode_w();
|
2018-01-19 04:06:42 +00:00
|
|
|
|
2020-08-10 01:29:05 +00:00
|
|
|
void set_max_anisotropy(int32_t v);
|
2018-11-07 14:24:25 +00:00
|
|
|
int get_max_anisotropy();
|
2018-01-19 04:06:42 +00:00
|
|
|
|
2020-08-10 01:29:05 +00:00
|
|
|
void set_border_color(uint32_t v);
|
|
|
|
void set_border_color(uint8_t r, uint8_t g, uint8_t b, uint8_t a);
|
|
|
|
uint32_t get_border_color();
|
|
|
|
uint8_t get_border_color(bool r, bool g, bool b, bool a);
|
2018-01-19 04:06:42 +00:00
|
|
|
|
2018-03-20 11:43:37 +00:00
|
|
|
gs_sampler_state* refresh();
|
2018-01-19 04:06:42 +00:00
|
|
|
|
2018-03-20 11:43:37 +00:00
|
|
|
gs_sampler_state* get_object();
|
2018-01-19 04:06:42 +00:00
|
|
|
|
|
|
|
private:
|
2019-08-04 14:20:26 +00:00
|
|
|
bool _dirty;
|
|
|
|
gs_sampler_info _sampler_info;
|
|
|
|
gs_sampler_state* _sampler_state;
|
2018-01-19 04:06:42 +00:00
|
|
|
};
|
2021-06-08 02:38:24 +00:00
|
|
|
} // namespace streamfx::obs::gs
|