blob: ab7ace30fd6af0cba985d4fccfaffe0d9e21473e (
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;
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();
}
|