aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-03-13 05:52:59 +0100
committerSven Gothel <[email protected]>2023-03-13 05:52:59 +0100
commit35d07fa97404921bb8e9b5185d6f89a3c09d0e9f (patch)
tree4c80af9925160c11aa96d09d66bdbe3b5015b4dc /src/jogl
parent4b6db72f86eef63196da0c13cd205314d5a109ee (diff)
Move png assets (NEWT icons + GLMediaPlayer dummy/test) to simple classpath, allowing access w/o jars. TODO: Test Android.
Diffstat (limited to 'src/jogl')
-rw-r--r--src/jogl/classes/jogamp/opengl/assets/test-ntsc01-28x16.pngbin0 -> 396 bytes
-rw-r--r--src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java2
2 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/opengl/assets/test-ntsc01-28x16.png b/src/jogl/classes/jogamp/opengl/assets/test-ntsc01-28x16.png
new file mode 100644
index 000000000..4601a214e
--- /dev/null
+++ b/src/jogl/classes/jogamp/opengl/assets/test-ntsc01-28x16.png
Binary files differ
diff --git a/src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java b/src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java
index 92ed2d749..59dba68f2 100644
--- a/src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java
+++ b/src/jogl/classes/jogamp/opengl/util/av/NullGLMediaPlayer.java
@@ -108,7 +108,7 @@ public class NullGLMediaPlayer extends GLMediaPlayerImpl {
public final static TextureData createTestTextureData() {
TextureData res = null;
try {
- final URLConnection urlConn = IOUtil.getResource("jogl/util/data/av/test-ntsc01-28x16.png", NullGLMediaPlayer.class.getClassLoader());
+ final URLConnection urlConn = IOUtil.getResource("jogamp/opengl/assets/test-ntsc01-28x16.png", NullGLMediaPlayer.class.getClassLoader());
if(null != urlConn) {
res = TextureIO.newTextureData(GLProfile.getGL2ES2(), urlConn.getInputStream(), false, TextureIO.PNG);
}