Browse Source

Tmp fix do not include PipelineCache in JS as broke heaps.io CI

Yuxiao Mao 10 months ago
parent
commit
60e7b8349a
1 changed files with 4 additions and 1 deletions
  1. 4 1
      h3d/impl/PipelineCache.hx

+ 4 - 1
h3d/impl/PipelineCache.hx

@@ -1,5 +1,7 @@
 package h3d.impl;
 package h3d.impl;
 
 
+#if !js
+
 #if hl
 #if hl
 @:forward(setI32,setUI8,setUI16,getUI8,getUI16,getI32,setF32,getF32,sub)
 @:forward(setI32,setUI8,setUI16,getUI8,getUI16,getI32,setF32,getF32,sub)
 private abstract Bytes(hl.Bytes) from hl.Bytes to hl.Bytes {
 private abstract Bytes(hl.Bytes) from hl.Bytes to hl.Bytes {
@@ -289,4 +291,5 @@ class PipelineBuilder {
 	}
 	}
 
 
 
 
-}
+}
+#end