All Downloads are FREE. Search and download functionalities are using the official Maven repository.

shaders.bgfx.vs_view2d.sc Maven / Gradle / Ivy

The newest version!
$input a_position, a_texcoord0
$output v_texcoord0

/*
 * Copyright 2011-2019 Branimir Karadzic. All rights reserved.
 * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
 */

#include "../common/common.sh"

void main()
{
	gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
  v_texcoord0 = a_texcoord0;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy