blob: 479104cbb5f5dedcb92641855d3a870ce7b3a4cc (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
package cc.polyfrost.oneconfig.lwjgl.image;
import cc.polyfrost.oneconfig.utils.IOUtils;
import org.lwjgl.nanovg.NanoVG;
import org.lwjgl.stb.STBImage;
import java.nio.ByteBuffer;
import java.util.HashMap;
public class ImageLoader {
private final HashMap<String, Image> imageHashMap = new HashMap<>();
public static ImageLoader INSTANCE = new ImageLoader();
public boolean loadImage(long vg, String fileName) {
if (!imageHashMap.containsKey(fileName)) {
int[] width = {0};
int[] height = {0};
int[] channels = {0};
ByteBuffer image = IOUtils.resourceToByteBufferNullable(fileName);
if (image == null) {
return false;
}
ByteBuffer buffer = STBImage.stbi_load_from_memory(image, width, height, channels, 4);
if (buffer == null) {
return false;
}
imageHashMap.put(fileName, new Image(NanoVG.nvgCreateImageRGBA(vg, width[0], height[0], NanoVG.NVG_IMAGE_REPEATX | NanoVG.NVG_IMAGE_REPEATY | NanoVG.NVG_IMAGE_GENERATE_MIPMAPS, buffer), buffer));
return true;
}
return true;
}
public void removeImage(String fileName) {
imageHashMap.remove(fileName);
}
public Image getImage(String fileName) {
return imageHashMap.get(fileName);
}
}
|