소스 검색

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";
 	}
 
 }