mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-30 20:04:30 +02:00
31 lines
737 B
C++
31 lines
737 B
C++
//
|
|
// OffscreenGlCanvas.h
|
|
// interface/src/renderer
|
|
//
|
|
// Created by Bradley Austin Davis on 2014/04/09.
|
|
// Copyright 2015 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
|
|
//
|
|
#pragma once
|
|
#ifndef hifi_OffscreenGlCanvas_h
|
|
#define hifi_OffscreenGlCanvas_h
|
|
|
|
#include <QOpenGLContext>
|
|
#include <QOffscreenSurface>
|
|
|
|
class OffscreenGlCanvas : public QObject {
|
|
public:
|
|
OffscreenGlCanvas();
|
|
void create(QOpenGLContext* sharedContext = nullptr);
|
|
bool makeCurrent();
|
|
void doneCurrent();
|
|
|
|
protected:
|
|
QOpenGLContext _context;
|
|
QOffscreenSurface _offscreenSurface;
|
|
|
|
};
|
|
|
|
#endif // hifi_OffscreenGlCanvas_h
|