blob: 74d55d31b0dcc241f63d3ee213a514e98d23b25f (
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
|
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//============================================================
//
// paramreader.h - BGFX shader parameter JSON reader
//
//============================================================
#pragma once
#ifndef __DRAWBGFX_PARAM_READER__
#define __DRAWBGFX_PARAM_READER__
#include "statereader.h"
class bgfx_parameter;
class parameter_reader : public state_reader
{
public:
static bgfx_parameter* read_from_value(const Value& value, std::string prefix, uint32_t window_index);
private:
static bool validate_parameters(const Value& value, std::string prefix);
static const int TYPE_COUNT = 3;
static const string_to_enum TYPE_NAMES[TYPE_COUNT];
};
#endif // __DRAWBGFX_PARAM_READER__
|