Skip to content
Snippets Groups Projects

Add check-gl draw a triangle using opengl test

Merged Jeremy Whiting requested to merge wip/jpwhiting/check-gl into master
+ 0
8
@@ -16,11 +16,6 @@
* limitations under the License.
*/
/* Portions of this code were taken from vulkan-tutorial.com which is
Licensed as CC0 1.0 Universal. Other parts were taken from vkcube which
is licensed as Apache 2.0
*/
#include <iostream>
#include <fstream>
#include <stdexcept>
@@ -42,8 +37,6 @@ extern "C" {
const int WIDTH = 200;
const int HEIGHT = 200;
const int MAX_FRAMES_IN_FLIGHT = 2;
static const char *argv0;
class HelloTriangleGLApplication {
@@ -60,7 +53,6 @@ public:
}
private:
size_t m_currentFrame = 0;
bool m_visible;
Display *m_display;
Window m_window;
Loading