See https://github.com/HaxeFoundation/haxe/issues/11187
@@ -4,7 +4,7 @@ import domkit.CssValue;
typedef FlowBg = { tile : #if macro Bool #else h2d.Tile #end, borderL : Int, borderT : Int, borderR : Int, borderB : Int, ?color : Int }
-class CustomParser extends CssValue.ValueParser {
+class CustomParser extends domkit.CssValue.ValueParser {
public function new() {
super();
@@ -150,7 +150,7 @@ class Reader {
g.vertexFormat = hxd.BufferFormat.make([for( k in 0...i.readByte() ) {
var name = readCachedName();
var type = i.readByte();
- new GeometryFormat(name, @:privateAccess GeometryDataFormat.fromInt(type&15), @:privateAccess Precision.fromInt(type>>4));
+ new GeometryFormat(name, @:privateAccess GeometryDataFormat.fromInt(type&15), @:privateAccess hxd.BufferFormat.Precision.fromInt(type>>4));
}]);
if( stride != g.vertexFormat.stride ) throw "assert";
g.vertexPosition = i.readInt32();