moGL
travis-test-3
Modern OpenGL wrapper, thin C++14 header-only layer on top of the OpenGL 4.5+ core spec
|
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 #ifndef MOGL_SYNC_INCLUDED 00012 #define MOGL_SYNC_INCLUDED 00013 00014 namespace mogl 00015 { 00016 namespace Sync 00017 { 00018 void flush(); 00019 void finish(); 00020 void textureBarrier(); 00021 }; 00022 } 00023 00024 #include "sync.inl" 00025 00026 #endif // MOGL_SYNC_INCLUDED