blob: 2036296a9d02efad71e3b60e35d99ce1086d6e56 (
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
35
36
37
|
// license:BSD-3-Clause
// copyright-holders:Ryan Holtz
//============================================================
//
// vertex.h - BGFX screen vertex data
//
//============================================================
#pragma once
#ifndef __DRAWBGFX_VERTEX__
#define __DRAWBGFX_VERTEX__
#include <bgfx/bgfx.h>
struct ScreenVertex
{
float m_x;
float m_y;
float m_z;
uint32_t m_rgba;
float m_u;
float m_v;
static void init()
{
ms_decl.begin()
.add(bgfx::Attrib::Position, 3, bgfx::AttribType::Float)
.add(bgfx::Attrib::Color0, 4, bgfx::AttribType::Uint8, true)
.add(bgfx::Attrib::TexCoord0, 2, bgfx::AttribType::Float)
.end();
}
static bgfx::VertexLayout ms_decl;
};
#endif // __DRAWBGFX_VERTEX__
|