Render themes: SVG resources, closes #60

This commit is contained in:
Emux
2016-07-14 21:18:04 +03:00
parent 9b4cf470f9
commit fed2cd05e4
13 changed files with 244 additions and 2 deletions

View File

@@ -53,6 +53,11 @@ public class GwtGdxGraphics extends CanvasAdapter {
return null;
}
@Override
public Bitmap decodeSvgBitmapImpl(InputStream in) {
return null;
}
@Override
public Bitmap loadBitmapAssetImpl(String relativePathPrefix, String src) {
String pathName = (relativePathPrefix == null || relativePathPrefix.length() == 0 ? "" : relativePathPrefix + File.separatorChar) + src;