diff options
author | Andreas Grois <andi@grois.info> | 2018-03-11 14:43:59 +0100 |
---|---|---|
committer | Andreas Grois <andi@grois.info> | 2018-03-11 14:43:59 +0100 |
commit | ae167f0b961146073c236c705bdf24f4dc178854 (patch) | |
tree | 8f44f91b679bbb0db8dfd12ecfadf6fbf9bf288d /BuddhaTest/src/BuddhaTest.cpp | |
parent | 7a8c83a1ee3215b1bc54d436cde05682e6188cf1 (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.cpp | 2 |
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;
}
|