blob: 271695b56a19ddc7505113a0295bfb8e484aa805 (
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
|
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//============================================================
//
// chain.cpp - BGFX screen-space post-effect chain
//
//============================================================
#include "slider.h"
#include "parameter.h"
#include "chainentry.h"
#include "chain.h"
bgfx_chain::bgfx_chain(std::string name, std::string author, std::vector<bgfx_slider*> sliders, std::vector<bgfx_parameter*> params, std::vector<bgfx_chain_entry*> entries)
: m_name(name)
, m_author(author)
, m_sliders(sliders)
, m_params(params)
, m_entries(entries)
{
}
bgfx_chain::~bgfx_chain()
{
}
void bgfx_chain::submit(render_primitive* prim, int view)
{
//for (bgfx_chain_entry* entry : m_entries)
//{
//}
}
|