Changeset 224 in flair-src for trunk/lib/FlairSimulator
- Timestamp:
- Mar 6, 2018, 12:12:58 PM (7 years ago)
- Location:
- trunk/lib/FlairSimulator/src
- Files:
-
- 12 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairSimulator/src/SimuCameraGL.cpp
r166 r224 69 69 "Intel Open Source Technology Center") == 0) { 70 70 //Thread::Warn("disabling cameras output for Intel card (bug with PBO)\n"); 71 Thread::Warn("camera output for Intel card may have bugs with PBO\n");71 Warn("camera output for Intel card may have bugs with PBO\n"); 72 72 //disable_output = true; 73 73 disable_output = false; … … 94 94 use_pbo = false; 95 95 buffer = (char *)malloc(width * height * 3+sizeof(Time)); 96 Thread::Warn("GL_ARB_pixel_buffer_object is not suppoorted\n");96 Warn("GL_ARB_pixel_buffer_object is not suppoorted\n"); 97 97 } 98 98 if (isGlExtensionSupported("GL_PACK_INVERT_MESA")) { 99 99 invert_pixel = false; 100 Thread::Warn("GL_PACK_INVERT_MESA is supported\n");100 Warn("GL_PACK_INVERT_MESA is supported\n"); 101 101 } else { 102 102 invert_pixel = true;
Note:
See TracChangeset
for help on using the changeset viewer.