blob: 1d0edfca830ed3888136152392bd8604aa890b83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//--------------------------------------------------------------------------------------
// Order Independent Transparency with Dual Depth Peeling
//
// Author: Louis Bavoil
// Email: sdkfeedback@nvidia.com
//
// Copyright (c) NVIDIA Corporation. All rights reserved.
//--------------------------------------------------------------------------------------
void main(void)
{
gl_Position = gl_ModelViewMatrix * gl_Vertex;
}
|