Revision d04a4886
Added by Leszek Koltunski almost 9 years ago
| src/main/java/org/distorted/examples/check/CheckRenderer.java | ||
|---|---|---|
| 28 | 28 |
import org.distorted.examples.R; |
| 29 | 29 |
|
| 30 | 30 |
import org.distorted.library.Distorted; |
| 31 |
import org.distorted.library.DistortedEffects; |
|
| 31 | 32 |
import org.distorted.library.DistortedFramebuffer; |
| 32 | 33 |
import org.distorted.library.DistortedTexture; |
| 33 |
import org.distorted.library.DistortedEffectQueues; |
|
| 34 | 34 |
import org.distorted.library.GridFlat; |
| 35 | 35 |
import org.distorted.library.EffectTypes; |
| 36 | 36 |
import org.distorted.library.type.Dynamic3D; |
| ... | ... | |
| 57 | 57 |
|
| 58 | 58 |
private GLSurfaceView mView; |
| 59 | 59 |
private DistortedTexture mTexture; |
| 60 |
private DistortedEffectQueues mEffects;
|
|
| 60 |
private DistortedEffects mEffects; |
|
| 61 | 61 |
private GridFlat mGrid; |
| 62 | 62 |
private DistortedFramebuffer mScreen; |
| 63 | 63 |
private int bmpHeight, bmpWidth; |
| ... | ... | |
| 67 | 67 |
CheckRenderer(GLSurfaceView view) |
| 68 | 68 |
{
|
| 69 | 69 |
mView = view; |
| 70 |
mEffects = new DistortedEffectQueues();
|
|
| 70 |
mEffects = new DistortedEffects(); |
|
| 71 | 71 |
|
| 72 | 72 |
CheckActivity act = (CheckActivity)mView.getContext(); |
| 73 | 73 |
|
Also available in: Unified diff
Change of names.