mame/3rdparty/bgfx/examples/40-svt/vs_vt_generic.sc
Бранимир Караџић 1a6a018fc3 Update bgfx to latest
2021-08-10 20:28:56 +02:00

17 lines
380 B
Python

$input a_position, a_texcoord0
$output v_texcoord0
/*
* Copyright 2011-2021 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
#include "../common/common.sh"
void main()
{
vec3 wpos = mul(u_model[0], vec4(a_position, 1.0) ).xyz;
gl_Position = mul(u_viewProj, vec4(wpos, 1.0) );
v_texcoord0 = a_texcoord0;
}