From 50d9ba4a4ac76bc142335c59e4511a6fcda258a1 Mon Sep 17 00:00:00 2001 From: unexploredtest <53617231+unexploredtest@users.noreply.github.com> Date: Fri, 9 Apr 2021 19:49:51 +0430 Subject: [PATCH] compile_source to compileSource kp::Shader::compile_source function has changed to kp::Shader::compileSource --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 85ce9e49f..1170d33a3 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ void kompute(const std::string& shader) { kp::Constants pushConstsB({ 3.0 }); auto algorithm = mgr.algorithm(params, - kp::Shader::compile_source(shader), + kp::Shader::compileSource(shader), workgroup, specConsts, pushConstsA);