浏览代码

changed error message for unsupported computeDispatch()

Nicolas Cannasse 1 年之前
父节点
当前提交
c96323d064
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      h3d/impl/Driver.hx

+ 1 - 1
h3d/impl/Driver.hx

@@ -298,7 +298,7 @@ class Driver {
 	// --- COMPUTE
 
 	public function computeDispatch( x : Int = 1, y : Int = 1, z : Int = 1 ) {
-		throw "Not implemented";
+		throw "Compute shaders are not implemented on this platform";
 	}
 
 }