mirror of
https://github.com/overte-org/overte.git
synced 2025-06-17 16:20:32 +02:00
31 lines
714 B
C++
31 lines
714 B
C++
//
|
|
// Created by Bradley Austin Davis on 2018/06/21
|
|
// Copyright 2013-2018 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_ShaderTests_h
|
|
#define hifi_ShaderTests_h
|
|
|
|
#include <QtTest/QtTest>
|
|
#include <gpu/Forward.h>
|
|
#include <gl/OffscreenGLCanvas.h>
|
|
#include <gl/Context.h>
|
|
|
|
class ShaderTests : public QObject {
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
void initTestCase();
|
|
void cleanupTestCase();
|
|
void testShaderLoad();
|
|
|
|
private:
|
|
QWindow* _window{ nullptr };
|
|
gl::Context* _context{ nullptr };
|
|
gpu::ContextPointer _gpuContext;
|
|
};
|
|
|
|
#endif // hifi_ViewFruxtumTests_h
|