blob: cc56f8cc5b5cb99cc9a27326269df479cf96965a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package com.android.camera.ui;
import android.graphics.Rect;
import javax.microedition.khronos.opengles.GL11;
public abstract class FrameTexture extends Texture {
public FrameTexture() {
}
public FrameTexture(GL11 gl, int id, int state) {
super(gl, id, state);
}
@Override
public void setSize(int width, int height) {
super.setSize(width, height);
}
abstract public Rect getPaddings();
}
|