Project

General

Profile

Download (2.86 KB) Statistics
| Branch: | Revision:

library / src / main / res / raw / oit_clear_fragment_shader.glsl @ 35a0f4ed

1
//////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2018 Leszek Koltunski                                                          //
3
//                                                                                          //
4
// This file is part of Distorted.                                                          //
5
//                                                                                          //
6
// Distorted is free software: you can redistribute it and/or modify                        //
7
// it under the terms of the GNU General Public License as published by                     //
8
// the Free Software Foundation, either version 2 of the License, or                        //
9
// (at your option) any later version.                                                      //
10
//                                                                                          //
11
// Distorted is distributed in the hope that it will be useful,                             //
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of                           //
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                            //
14
// GNU General Public License for more details.                                             //
15
//                                                                                          //
16
// You should have received a copy of the GNU General Public License                        //
17
// along with Distorted.  If not, see <http://www.gnu.org/licenses/>.                       //
18
//////////////////////////////////////////////////////////////////////////////////////////////
19

    
20
precision highp float;
21
precision highp int;
22

    
23
in vec2 v_TexCoordinate;
24
in vec2 v_Pixel;              // location of the current fragment, in pixels
25

    
26
//////////////////////////////////////////////////////////////////////////////////////////////
27
// per-pixel linked list. Order Independent Transparency.
28

    
29
uniform uvec2 u_Size;
30

    
31
layout (std430,binding=1) buffer linkedlist  // first (u_Size.x*u_Size.y) uints - head pointers,
32
  {                                          // one for each pixel in the Output rectangle.
33
  uint u_Records[];                          //
34
  };                                         // Next 3*u_numRecords uints - actual linked list, i.e.
35
                                             // triplets of (pointer,depth,rgba).
36

    
37
//////////////////////////////////////////////////////////////////////////////////////////////
38
// Pass1 of the OIT algorithm - 'clear the head pointers' phase.
39
// No we cannot optimize this out by moving the 'u_Records[index]=0u' to the end of the Pass3,
40
// because between passes the size of the surface we render to might change.
41

    
42
void main()                    		
43
  {
44
  uint index= uint(v_Pixel.x) + uint(v_Pixel.y) * u_Size.x;
45
  u_Records[index] = 0u;
46
  discard;
47
  }
(10-10/14)