mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
Added 19-oit example.
This commit is contained in:
18
examples/19-oit/vs_oit.sc
Normal file
18
examples/19-oit/vs_oit.sc
Normal file
@@ -0,0 +1,18 @@
|
||||
$input a_position
|
||||
$output v_pos
|
||||
|
||||
/*
|
||||
* Copyright 2011-2014 Branimir Karadzic. All rights reserved.
|
||||
* License: http://www.opensource.org/licenses/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_pos = gl_Position;
|
||||
vec4 temp = mul(u_view, vec4(wpos, 1.0) );
|
||||
v_pos.x = temp.z;
|
||||
}
|
||||
Reference in New Issue
Block a user