summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/render/bgfx/entryuniform.h
blob: 4ba30250e6e1c0dd17d1b5168588ff545d6ecfb5 (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__