blob: bcebb755ab6faa89f2ae2847f901cff3646b2093 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//============================================================
//
// inputpair.h - BGFX sampler-and-texture pair
//
// Keeps track of the texture which is bound to the sampler
// which is bound to the specified stage index.
//
//============================================================
#include "inputpair.h"
#include "texture.h"
#include "effect.h"
bgfx_input_pair::bgfx_input_pair(int index, std::string sampler, bgfx_texture* texture)
: m_index(index)
, m_sampler(sampler)
, m_texture(texture)
{
}
void bgfx_input_pair::bind(bgfx_effect *effect)
{
bgfx::setTexture(m_index, effect->uniform(m_sampler)->handle(), m_texture->handle());
}
|