Diff
Not logged in

Differences From Artifact [335029d8b7]:

To Artifact [5f17cbd64f]:


12
13
14
15
16
17
18

19
20
21
22
23
24
25
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26







+








    public AndroidTexture(int width, int height, boolean alpha) {
        int[] ids = new int[1];
        GLES10.glGenTextures(1, ids, 0);
        id = ids[0];
        this.width = width;
        this.height = height;
        this.alpha = alpha;
    }

    public int getId() {
        return id;
    }

    public int getHeight() {