aboutsummaryrefslogtreecommitdiff
path: root/BuddhaTest/src/BuddhaTest.cpp
diff options
context:
space:
mode:
authorAndreas Grois <andi@grois.info>2018-03-11 14:43:59 +0100
committerAndreas Grois <andi@grois.info>2018-03-11 14:43:59 +0100
commitae167f0b961146073c236c705bdf24f4dc178854 (patch)
tree8f44f91b679bbb0db8dfd12ecfadf6fbf9bf288d /BuddhaTest/src/BuddhaTest.cpp
parent7a8c83a1ee3215b1bc54d436cde05682e6188cf1 (diff)
Replace std::cout with std::cerr for actual error messages. Remove some
debugging output
Diffstat (limited to 'BuddhaTest/src/BuddhaTest.cpp')
-rw-r--r--BuddhaTest/src/BuddhaTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/BuddhaTest/src/BuddhaTest.cpp b/BuddhaTest/src/BuddhaTest.cpp
index 37843c6..1709853 100644
--- a/BuddhaTest/src/BuddhaTest.cpp
+++ b/BuddhaTest/src/BuddhaTest.cpp
@@ -87,7 +87,7 @@ int main(int argc, char * argv[])
GLuint ComputeShader = Helpers::LoadComputeShader(computePath, settings.localWorkgroupSizeX, settings.localWorkgroupSizeY, settings.localWorkgroupSizeZ);
if(VertexAndFragmentShaders == 0 || ComputeShader == 0)
{
- std::cout << "Something went wrong with loading the shaders. Abort." << std::endl;
+ std::cerr << "Something went wrong with loading the shaders. Abort." << std::endl;
glfwTerminate();
return 1;
}