summaryrefslogtreecommitdiffstats
path: root/examples/hello-world/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello-world/main.cpp')
-rw-r--r--examples/hello-world/main.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/examples/hello-world/main.cpp b/examples/hello-world/main.cpp
index 526ab1a2a..87d440901 100644
--- a/examples/hello-world/main.cpp
+++ b/examples/hello-world/main.cpp
@@ -70,7 +70,6 @@ struct HelloWorldExample : public TestBase
int main(int argc, char* argv[])
{
- fprintf(stdout, "Hello, world! Entry Point\n");
initDebugCallback();
HelloWorldExample example;
example.parseOption(argc, argv);
@@ -84,19 +83,10 @@ int main(int argc, char* argv[])
int HelloWorldExample::run()
{
RETURN_ON_FAIL(initVulkanInstanceAndDevice());
- fprintf(stdout, "initVulkanInstanceAndDevice done\n");
-
RETURN_ON_FAIL(createComputePipelineFromShader());
- fprintf(stdout, "createComputePipelineFromShader done\n");
-
RETURN_ON_FAIL(createInOutBuffers());
- fprintf(stdout, "createInOutBuffers done\n");
-
RETURN_ON_FAIL(dispatchCompute());
- fprintf(stdout, "dispatchCompute done\n");
-
RETURN_ON_FAIL(printComputeResults());
- fprintf(stdout, "printComputeResults done\n");
return 0;
}