Browse Source

fixed mesa support

ncannasse 7 năm trước cách đây
mục cha
commit
3ce96e2981
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      libs/mesa/haxe/System.hx

+ 5 - 0
libs/mesa/haxe/System.hx

@@ -4,6 +4,7 @@ class System {
 
 	public static var width = 800;
 	public static var height = 600;
+	public static var vsync = true;
 
 	public static var buffer : haxe.io.Bytes = null;
 	public static var ctx : mesa.Context;
@@ -32,6 +33,10 @@ class System {
 			throw "Failed to init GL API";
 		return true;
 	}
+	
+	public static function emitEvents(_) {
+		return true;
+	}
 
 	public static function present() {
 	}