blob: 9c1462f360fa8367b829c1fe15ad50465886d8b9 (
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
27
28
29
30
31
32
33
34
|
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//============================================================
//
// entryuniform.h - BGFX shader chain uniform remapper
//
// Represents the mapping between a fixed value, a slider, or
// other dynamic parameter and a chain effect shader uniform
//
//============================================================
#pragma once
#ifndef DRAWBGFX_ENTRY_UNIFORM
#define DRAWBGFX_ENTRY_UNIFORM
#include <bgfx/bgfx.h>
#include "uniform.h"
class bgfx_entry_uniform
{
public:
bgfx_entry_uniform(bgfx_uniform* uniform) : m_uniform(uniform) { }
virtual ~bgfx_entry_uniform() { }
virtual void bind() = 0;
std::string name() const { return m_uniform->name(); }
protected:
bgfx_uniform* m_uniform;
};
#endif // __DRAWBGFX_ENTRY_UNIFORM__
|