Project

General

Profile

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

library / src / main / java / org / distorted / library / main / EffectQueuePostprocess.java @ 15aa7d94

1
///////////////////////////////////////////////////////////////////////////////////////////////////
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

    
20
package org.distorted.library.main;
21

    
22
import android.content.res.Resources;
23
import android.opengl.GLES30;
24

    
25
import org.distorted.library.effect.Effect;
26
import org.distorted.library.effect.PostprocessEffect;
27
import org.distorted.library.R;
28
import org.distorted.library.message.EffectMessage;
29
import org.distorted.library.program.DistortedProgram;
30
import org.distorted.library.program.FragmentCompilationException;
31
import org.distorted.library.program.FragmentUniformsException;
32
import org.distorted.library.program.LinkingException;
33
import org.distorted.library.program.VertexCompilationException;
34
import org.distorted.library.program.VertexUniformsException;
35

    
36
import java.io.InputStream;
37
import java.nio.ByteBuffer;
38
import java.nio.ByteOrder;
39
import java.nio.FloatBuffer;
40

    
41
///////////////////////////////////////////////////////////////////////////////////////////////////
42

    
43
class EffectQueuePostprocess extends EffectQueue
44
  {
45
  private static final int MAX_HALO = 50;    // Support effects creating up to MAX_HALO pixels wide 'halo' around the object.
46

    
47
  private static final int POS_DATA_SIZE= 2; // Post Program: size of the position data in elements
48
  private static final int TEX_DATA_SIZE= 2; // Post Program: size of the texture coordinate data in elements.
49

    
50
  private static final int NUM_UNIFORMS = PostprocessEffect.NUM_UNIFORMS;
51
  private static final int INDEX = Effect.POSTPROCESS;
52

    
53
  private static final FloatBuffer mQuadPositions, mQuadTexture, mQuadTextureInv;
54

    
55
  static
56
    {
57
    int dataLength      = 4;
58
    int bytes_per_float = 4;
59

    
60
    float[] position  = { -0.5f, -0.5f,  -0.5f, 0.5f,  0.5f,-0.5f,  0.5f, 0.5f };
61
    float[] textureNor= {  0.0f,  0.0f,   0.0f, 1.0f,  1.0f, 0.0f,  1.0f, 1.0f };
62
    float[] textureInv= {  0.0f,  0.0f,   1.0f, 0.0f,  0.0f, 1.0f,  1.0f, 1.0f };
63

    
64
    mQuadPositions = ByteBuffer.allocateDirect(POS_DATA_SIZE*dataLength*bytes_per_float).order(ByteOrder.nativeOrder()).asFloatBuffer();
65
    mQuadPositions.put(position).position(0);
66
    mQuadTexture= ByteBuffer.allocateDirect(TEX_DATA_SIZE*dataLength*bytes_per_float).order(ByteOrder.nativeOrder()).asFloatBuffer();
67
    mQuadTexture.put(textureNor).position(0);
68
    mQuadTextureInv= ByteBuffer.allocateDirect(TEX_DATA_SIZE*dataLength*bytes_per_float).order(ByteOrder.nativeOrder()).asFloatBuffer();
69
    mQuadTextureInv.put(textureInv).position(0);
70
    }
71

    
72
  int mQualityLevel;
73
  float mQualityScale;
74
  private int mHalo;
75

    
76
  /////////////////////////////////////////////////////////////////////////////////
77
  // BLUR effect
78
  private static final float GAUSSIAN[] =   // G(0.00), G(0.03), G(0.06), ..., G(3.00), 0
79
    {                                       // where G(x)= (1/(sqrt(2*PI))) * e^(-(x^2)/2). The last 0 terminates.
80
    0.398948f, 0.398769f, 0.398231f, 0.397336f, 0.396086f, 0.394485f, 0.392537f, 0.390247f, 0.387622f, 0.384668f,
81
    0.381393f, 0.377806f, 0.373916f, 0.369733f, 0.365268f, 0.360532f, 0.355538f, 0.350297f, 0.344823f, 0.339129f,
82
    0.333229f, 0.327138f, 0.320868f, 0.314436f, 0.307856f, 0.301142f, 0.294309f, 0.287373f, 0.280348f, 0.273248f,
83
    0.266089f, 0.258884f, 0.251648f, 0.244394f, 0.237135f, 0.229886f, 0.222657f, 0.215461f, 0.208311f, 0.201217f,
84
    0.194189f, 0.187238f, 0.180374f, 0.173605f, 0.166940f, 0.160386f, 0.153951f, 0.147641f, 0.141462f, 0.135420f,
85
    0.129520f, 0.123765f, 0.118159f, 0.112706f, 0.107408f, 0.102266f, 0.097284f, 0.092461f, 0.087797f, 0.083294f,
86
    0.078951f, 0.074767f, 0.070741f, 0.066872f, 0.063158f, 0.059596f, 0.056184f, 0.052920f, 0.049801f, 0.046823f,
87
    0.043984f, 0.041280f, 0.038707f, 0.036262f, 0.033941f, 0.031740f, 0.029655f, 0.027682f, 0.025817f, 0.024056f,
88
    0.022395f, 0.020830f, 0.019357f, 0.017971f, 0.016670f, 0.015450f, 0.014305f, 0.013234f, 0.012232f, 0.011295f,
89
    0.010421f, 0.009606f, 0.008847f, 0.008140f, 0.007483f, 0.006873f, 0.006307f, 0.005782f, 0.005296f, 0.004847f,
90
    0.004432f, 0.000000f
91
    };
92
  private static final int NUM_GAUSSIAN = GAUSSIAN.length-2;
93

    
94
  // The (fixed-function-sampled) Gaussian Blur kernels are of the size k0=1, k1=2, k2=2, k3=3, k4=3, k5=4, k6=4,...
95
  // i.e. k(i)=floor((i+3)/2).  (the 'i' in k(i) means 'blur taking into account the present pixel and 'i' pixels
96
  // in all 4 directions)
97
  // We need room for MAX_BLUR of them, and sum(i=0...N, floor((i+3)/2)) = N + floor(N*N/4)
98
  private static float[] weightsCache = new float[MAX_HALO + MAX_HALO*MAX_HALO/4];
99
  private static float[] offsetsCache = new float[MAX_HALO + MAX_HALO*MAX_HALO/4];
100

    
101
  private static DistortedProgram mBlur1Program, mBlur2Program;
102
  private static int mRadius1H,mOffsets1H,mWeights1H,mDepth1H, mColorTexture1H;
103
  private static int mRadius2H,mOffsets2H,mWeights2H,mDepth2H, mColorTexture2H;
104
  private static float[] mWeights = new float[MAX_HALO];
105
  private static float[] mOffsets = new float[MAX_HALO];
106
  /////////////////////////////////////////////////////////////////////////////////
107
  // GLOW effect
108

    
109

    
110
///////////////////////////////////////////////////////////////////////////////////////////////////
111

    
112
  EffectQueuePostprocess(long id)
113
    { 
114
    super(id,NUM_UNIFORMS,INDEX );
115

    
116
    mQualityLevel = 0;
117
    mQualityScale = 1.0f;
118
    }
119

    
120
///////////////////////////////////////////////////////////////////////////////////////////////////
121

    
122
  static void createProgram(Resources resources)
123
  throws FragmentCompilationException,VertexCompilationException,VertexUniformsException,FragmentUniformsException,LinkingException
124
    {
125
    final InputStream blur1VertexStream   = resources.openRawResource(R.raw.blur_vertex_shader);
126
    final InputStream blur1FragmentStream = resources.openRawResource(R.raw.blur1_fragment_shader);
127

    
128
    try
129
      {
130
      mBlur1Program = new DistortedProgram(blur1VertexStream,blur1FragmentStream,
131
                                          Distorted.GLSL_VERSION,
132
                                          Distorted.GLSL_VERSION + "#define MAX_BLUR "+MAX_HALO, Distorted.GLSL);
133
      }
134
    catch(Exception e)
135
      {
136
      android.util.Log.e("EFFECTS", "exception trying to compile BLUR1 program: "+e.getMessage());
137
      throw new RuntimeException(e.getMessage());
138
      }
139

    
140
    int blur1ProgramH = mBlur1Program.getProgramHandle();
141
    mRadius1H       = GLES30.glGetUniformLocation( blur1ProgramH, "u_Radius");
142
    mOffsets1H      = GLES30.glGetUniformLocation( blur1ProgramH, "u_Offsets");
143
    mWeights1H      = GLES30.glGetUniformLocation( blur1ProgramH, "u_Weights");
144
    mDepth1H        = GLES30.glGetUniformLocation( blur1ProgramH, "u_Depth");
145
    mColorTexture1H = GLES30.glGetUniformLocation( blur1ProgramH, "u_ColorTexture");
146

    
147
    final InputStream blur2VertexStream   = resources.openRawResource(R.raw.blur_vertex_shader);
148
    final InputStream blur2FragmentStream = resources.openRawResource(R.raw.blur2_fragment_shader);
149

    
150
    try
151
      {
152
      mBlur2Program = new DistortedProgram(blur2VertexStream,blur2FragmentStream,
153
                                          Distorted.GLSL_VERSION,
154
                                          Distorted.GLSL_VERSION + "#define MAX_BLUR "+MAX_HALO, Distorted.GLSL);
155
      }
156
    catch(Exception e)
157
      {
158
      android.util.Log.e("EFFECTS", "exception trying to compile BLUR2 program: "+e.getMessage());
159
      // run anyway as compiling Blur2 WILL fail on OpenGL 2.0 contexts
160
      mBlur2Program = mBlur1Program;
161
      }
162

    
163
    int blur2ProgramH = mBlur2Program.getProgramHandle();
164
    mRadius2H       = GLES30.glGetUniformLocation( blur2ProgramH, "u_Radius");
165
    mOffsets2H      = GLES30.glGetUniformLocation( blur2ProgramH, "u_Offsets");
166
    mWeights2H      = GLES30.glGetUniformLocation( blur2ProgramH, "u_Weights");
167
    mDepth2H        = GLES30.glGetUniformLocation( blur2ProgramH, "u_Depth");
168
    mColorTexture2H = GLES30.glGetUniformLocation( blur2ProgramH, "u_ColorTexture");
169
    }
170

    
171
///////////////////////////////////////////////////////////////////////////////////////////////////
172

    
173
  private synchronized void compute(long currTime)
174
    {
175
    if( currTime==mTime ) return;
176
    if( mTime==0 ) mTime = currTime;
177
    long step = (currTime-mTime);
178

    
179
    mHalo = 0;
180
    int halo;
181

    
182
    for(int i=0; i<mNumEffects; i++)
183
      {
184
      mCurrentDuration[i] += step;
185

    
186
      if( mEffects[i].compute(mUniforms, NUM_UNIFORMS*i, mCurrentDuration[i], step) )
187
        {
188
        for(int j=0; j<mNumListeners; j++)
189
          EffectMessageSender.newMessage( mListeners.elementAt(j), EffectMessage.EFFECT_FINISHED, mEffects[i].getID(), mID);
190

    
191
        if( PostprocessEffect.isUnity( mEffects[i].getName(), mUniforms, NUM_UNIFORMS*i) )
192
          {
193
          remove(i--);
194
          continue;
195
          }
196
        }
197

    
198
      halo = (int)mUniforms[NUM_UNIFORMS*i];
199
      if( halo>mHalo ) mHalo = halo;
200
      }
201

    
202
    mTime = currTime;
203
    }
204

    
205
///////////////////////////////////////////////////////////////////////////////////////////////////
206
// This implements the 'Better separable implementation using GPU fixed function sampling' from
207
// https://software.intel.com/en-us/blogs/2014/07/15/an-investigation-of-fast-real-time-gpu-based-image-blur-algorithms
208

    
209
  private void computeGaussianKernel(int radius)
210
    {
211
    int offset = radius + radius*radius/4;
212

    
213
    if( weightsCache[offset]==0.0f )
214
      {
215
      float z, x= 0.0f, P= (float)NUM_GAUSSIAN / (radius>3 ? radius:3);
216
      mWeights[0] = GAUSSIAN[0];
217
      float sum   = GAUSSIAN[0];
218
      int j;
219

    
220
      for(int i=1; i<=radius; i++)
221
        {
222
        x += P;
223
        j = (int)x;
224
        z = x-j;
225

    
226
        mWeights[i] = (1-z)*GAUSSIAN[j] + z*GAUSSIAN[j+1];
227
        sum += 2*mWeights[i];
228
        }
229

    
230
      for(int i=0; i<=radius; i++) mWeights[i] /= sum;
231

    
232
      int numloops = radius/2;
233
      weightsCache[offset] = mWeights[0];
234
      offsetsCache[offset] = 0.0f;
235

    
236
      for(int i=0; i<numloops; i++)
237
        {
238
        offsetsCache[offset+i+1] = mWeights[2*i+1]*(2*i+1) + mWeights[2*i+2]*(2*i+2);
239
        weightsCache[offset+i+1] = mWeights[2*i+1] + mWeights[2*i+2];
240
        offsetsCache[offset+i+1]/= weightsCache[offset+i+1];
241
        }
242

    
243
      if( radius%2 == 1 )
244
        {
245
        int index = offset + radius/2 +1;
246
        offsetsCache[index]=radius;
247
        weightsCache[index]=mWeights[radius];
248
        }
249
      }
250
    }
251

    
252
///////////////////////////////////////////////////////////////////////////////////////////////////
253

    
254
  int getHalo()
255
    {
256
    return mNumEffects>0 ? mHalo : 0;
257
    }
258

    
259
///////////////////////////////////////////////////////////////////////////////////////////////////
260

    
261
  int postprocess(long time, DistortedOutputSurface surface)
262
    {
263
    int numRenders = 0;
264

    
265
    if( mNumEffects>0 )
266
      {
267
      compute(time);
268

    
269
      for(int i=0; i<mNumEffects; i++)
270
        {
271
        if (mName[i] == PostprocessEffect.BLUR )
272
          {
273
          blur(NUM_UNIFORMS*i,surface);
274
          numRenders += 2;
275
          }
276
        else if (mName[i] == PostprocessEffect.GLOW )
277
          {
278
          glow(NUM_UNIFORMS*i,surface);
279
          numRenders += 2;
280
          }
281
        }
282
      }
283

    
284
    return numRenders;
285
    }
286

    
287
///////////////////////////////////////////////////////////////////////////////////////////////////
288

    
289
  private void blur(int index, DistortedOutputSurface surface)
290
    {
291
    DistortedFramebuffer buffer = surface.mBuffer[mQualityLevel];
292
    GLES30.glBindFramebuffer(GLES30.GL_FRAMEBUFFER, buffer.mFBOH[0]);
293

    
294
    float w1 = buffer.mWidth;
295
    float h1 = buffer.mHeight;
296

    
297
    int radius = (int)(mUniforms[index]*mQualityScale);
298
    if( radius>=MAX_HALO ) radius = MAX_HALO-1;
299
    computeGaussianKernel(radius);
300

    
301
    int offset = radius + radius*radius/4;
302
    radius = (radius+1)/2;
303

    
304
    // horizontal blur
305
    GLES30.glViewport(0, 0, (int)w1, (int)h1);
306
    mBlur1Program.useProgram();
307
    GLES30.glFramebufferTexture2D(GLES30.GL_FRAMEBUFFER, GLES30.GL_COLOR_ATTACHMENT0, GLES30.GL_TEXTURE_2D, buffer.mColorH[1], 0);
308
    GLES30.glActiveTexture(GLES30.GL_TEXTURE0);
309
    GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, buffer.mColorH[0]);
310

    
311
    GLES30.glUniform1fv( mWeights1H, radius+1, weightsCache,offset);
312
    GLES30.glUniform1i( mRadius1H, radius);
313
    GLES30.glUniform1f( mDepth1H , 1.0f-surface.mNear);
314
    GLES30.glUniform1i( mColorTexture1H , 0 );
315
    for(int i=0; i<=radius; i++) mOffsets[i] = offsetsCache[offset+i]/h1;
316
    GLES30.glUniform1fv( mOffsets1H ,radius+1, mOffsets,0);
317
    GLES30.glVertexAttribPointer(mBlur1Program.mAttribute[0], POS_DATA_SIZE, GLES30.GL_FLOAT, false, 0, mQuadPositions);
318
    GLES30.glVertexAttribPointer(mBlur1Program.mAttribute[1], TEX_DATA_SIZE, GLES30.GL_FLOAT, false, 0, mQuadTexture);
319

    
320
    DistortedRenderState.useStencilMark();
321
    GLES30.glDrawArrays(GLES30.GL_TRIANGLE_STRIP, 0, 4);
322
    DistortedRenderState.unuseStencilMark();
323
    GLES30.glActiveTexture(GLES30.GL_TEXTURE0);
324
    GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, 0);
325

    
326
    // vertical blur
327
    mBlur2Program.useProgram();
328
    GLES30.glFramebufferTexture2D(GLES30.GL_FRAMEBUFFER, GLES30.GL_COLOR_ATTACHMENT0, GLES30.GL_TEXTURE_2D, buffer.mColorH[0], 0);
329
    GLES30.glActiveTexture(GLES30.GL_TEXTURE0);
330
    GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, buffer.mColorH[1]);
331

    
332
    GLES30.glColorMask(true,true,true,true);
333
    GLES30.glClearColor(0.0f,0.0f,0.0f,0.0f);
334
    GLES30.glClear(GLES30.GL_COLOR_BUFFER_BIT);
335

    
336
    GLES30.glUniform1fv( mWeights2H, radius+1, weightsCache,offset);
337
    GLES30.glUniform1i( mRadius2H, radius);
338
    GLES30.glUniform1f( mDepth2H , 1.0f-surface.mNear);
339
    GLES30.glUniform1i( mColorTexture2H , 0 );
340
    for(int i=0; i<=radius; i++) mOffsets[i] = offsetsCache[offset+i]/w1;
341
    GLES30.glUniform1fv( mOffsets2H ,radius+1, mOffsets,0);
342
    GLES30.glVertexAttribPointer(mBlur2Program.mAttribute[0], POS_DATA_SIZE, GLES30.GL_FLOAT, false, 0, mQuadPositions);
343
    GLES30.glVertexAttribPointer(mBlur2Program.mAttribute[1], TEX_DATA_SIZE, GLES30.GL_FLOAT, false, 0, mQuadTexture);
344

    
345
    DistortedRenderState.useStencilMark();
346
    GLES30.glDrawArrays(GLES30.GL_TRIANGLE_STRIP, 0, 4);
347
    DistortedRenderState.unuseStencilMark();
348
    GLES30.glActiveTexture(GLES30.GL_TEXTURE0);
349
    GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, 0);
350
    }
351

    
352
///////////////////////////////////////////////////////////////////////////////////////////////////
353

    
354
  private void glow(int index, DistortedOutputSurface surface)
355
    {
356

    
357
    }
358
  }
(20-20/24)