Project

General

Profile

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

library / src / main / res / raw / main_fragment_shader.glsl @ c1a38ba3

1 d333eb6b Leszek Koltunski
//////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2016 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 6a06a912 Leszek Koltunski
20 341151fc Leszek Koltunski
precision highp float;
21 c1a38ba3 Leszek Koltunski
precision highp int;
22 94f6d472 Leszek Koltunski
23 f2367b75 Leszek Koltunski
in vec3 v_Position;                     // Interpolated position for this fragment.
24
in vec3 v_Normal;                       // Interpolated normal for this fragment.
25
in vec2 v_TexCoordinate;                // Interpolated texture coordinate per fragment.
26 5e331bc8 Leszek Koltunski
27 f2367b75 Leszek Koltunski
out vec4 fragColor;                     // The output color
28 94f6d472 Leszek Koltunski
29
uniform sampler2D u_Texture;            // The input texture.
30 6a06a912 Leszek Koltunski
31 5e331bc8 Leszek Koltunski
#ifdef OIT
32
//////////////////////////////////////////////////////////////////////////////////////////////
33
// per-pixel linked list. Order Independent Transparency.
34
35
in vec2 v_Pixel;                        // location of the current fragment, in pixels
36
uniform uvec2 u_Size;
37
uniform uint u_numRecords;
38
39
layout (binding=0, offset=0) uniform atomic_uint u_Counter;
40
41
layout (std430,binding=1) buffer linkedlist  // first (u_Size.x*u_Size.y) uints - head pointers,
42
  {                                          // one for each pixel in the Output rectangle.
43
  uint u_Records[];                          //
44
  };                                         // Next 3*u_numRecords uints - actual linked list, i.e.
45
                                             // triplets of (pointer,depth,rgba).
46
#endif
47
48 6a06a912 Leszek Koltunski
#if NUM_FRAGMENT>0
49 ad33f883 Leszek Koltunski
uniform int fNumEffects;                // total number of fragment effects
50 15aa7d94 Leszek Koltunski
uniform int fName[NUM_FRAGMENT];        // their namess.
51 2fce34f4 Leszek Koltunski
uniform vec4 fUniforms[2*NUM_FRAGMENT]; // i-th effect is 2 consecutive vec4's: [2*i], [2*i+1]. First vec4 is the Interpolated values,
52
                                        // next describes the Region, i.e. area over which the effect is active.
53 03cb451d Leszek Koltunski
#endif    // NUM_FRAGMENT>0
54 6a06a912 Leszek Koltunski
55 5e331bc8 Leszek Koltunski
#ifdef OIT
56
//////////////////////////////////////////////////////////////////////////////////////////////
57
// Concurrent insert to a linked list. Tim Harris, 'pragmatic implementation of non-blocking
58
// linked-lists', 2001.
59
// This arranges fragments by decreasing 'depth', so one would think - from back to front, but
60
// in main() below the depth is mapped with S*(1-depth)/2, so it is really front to back.
61
62
void insert( vec2 ij, uint depth, uint rgba )
63
  {
64
  uint ptr = atomicCounterIncrement(u_Counter);
65
66
  if( ptr<u_numRecords )
67
    {
68
    ptr = 3u*ptr + u_Size.x*u_Size.y;
69
70
    u_Records[ptr+1u] = depth;
71
    u_Records[ptr+2u] = rgba;
72
73
    memoryBarrier();
74
75
    uint prev = uint(ij.x) + uint(ij.y) * u_Size.x;
76
    uint curr = u_Records[prev];
77
78
    while (true)
79
      {
80
      if ( curr==0u || depth > u_Records[curr+1u] )  // need to insert here
81
        {
82
        u_Records[ptr] = curr;     // next of new record is curr
83
        memoryBarrier();
84
        uint res = atomicCompSwap( u_Records[prev], curr, ptr );
85
86
        if (res==curr) break;      // done!
87
        else           curr = res; // could not insert! retry from same place in list
88
        }
89
      else                         // advance in list
90
        {
91
        prev = curr;
92
        curr = u_Records[prev];
93
        }
94
      }
95
    }
96
  }
97 c1a38ba3 Leszek Koltunski
98
//////////////////////////////////////////////////////////////////////////////////////////////
99
100
uint convert(vec4 c)
101
  {
102
  return ((uint(255.0*c.r))<<24u) + ((uint(255.0*c.g))<<16u) + ((uint(255.0*c.b))<<8u) + uint(255.0*c.a);
103
  }
104
105 5e331bc8 Leszek Koltunski
#endif   // OIT
106
107 6a06a912 Leszek Koltunski
//////////////////////////////////////////////////////////////////////////////////////////////
108
109
void main()                    		
110
  {  
111 5e331bc8 Leszek Koltunski
  vec4 color = texture(u_Texture,v_TexCoordinate);
112 4018b3b7 Leszek Koltunski
113
#if NUM_FRAGMENT>0
114 6a06a912 Leszek Koltunski
  vec2 diff;
115 7cd24173 leszek
  float degree;
116
  int effect=0;
117 03cb451d Leszek Koltunski
118 6a06a912 Leszek Koltunski
  for(int i=0; i<fNumEffects; i++)
119
    {
120 7cd24173 leszek
    diff   = (v_Position.xy - fUniforms[effect+1].xy)/fUniforms[effect+1].zw;
121
    degree = max(0.0,1.0-dot(diff,diff));
122 341c803d Leszek Koltunski
123 7cd24173 leszek
    // ENABLED EFFECTS WILL BE INSERTED HERE
124 03cb451d Leszek Koltunski
125 7cd24173 leszek
    effect+=2;
126 6a06a912 Leszek Koltunski
    }
127
#endif
128 ff8ad0a7 Leszek Koltunski
129 5e331bc8 Leszek Koltunski
#ifdef OIT
130 c1a38ba3 Leszek Koltunski
  if( color.a > 0.95 )
131 5e331bc8 Leszek Koltunski
    {
132
    fragColor= vec4(color.rgb * (1.0 + 7.0*v_Normal.z) * 0.125, color.a);
133
    }
134
  else
135
    {
136 c1a38ba3 Leszek Koltunski
    if( color.a > 0.0 )
137 5e331bc8 Leszek Koltunski
      {
138
      const float S= 2147483647.0; // max signed int. Could probably be max unsigned int but this is enough.
139 c1a38ba3 Leszek Koltunski
      insert(v_Pixel, uint(S*(1.0-gl_FragCoord.z)/2.0), convert(color) );
140 5e331bc8 Leszek Koltunski
      }
141
    discard;
142
    }
143
#else
144
  fragColor = vec4(color.rgb * (1.0 + 7.0*v_Normal.z) * 0.125, color.a);
145
#endif
146 341c803d Leszek Koltunski
  }