blob: 3f36fa3d130f6c4c37624350a72e446129f1580e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package com.artifex.mupdf.fitz;
public class DisplayList
{
protected long pointer;
protected native void finalize();
public void destroy() {
finalize();
pointer = 0;
}
private native long newNative();
public DisplayList() {
pointer = newNative();
}
public native void run(Device device, Matrix ctm, Rect scissor, Cookie cookie);
public void run(Device device, Matrix ctm, Cookie cookie) {
run(device, ctm, null, cookie);
}
}
|