mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-08 19:56:48 +02:00
26 lines
674 B
C++
26 lines
674 B
C++
//
|
|
// Tv3dRenderPlugin.h
|
|
//
|
|
// Created by Bradley Austin Davis on 2014/04/13.
|
|
// 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
|
|
|
|
#include "StereoRenderPlugin.h"
|
|
|
|
class Tv3dRenderPlugin : public StereoRenderPlugin {
|
|
Q_OBJECT
|
|
public:
|
|
static const QString NAME;
|
|
virtual const QString & getName();
|
|
|
|
virtual void overrideOffAxisFrustum(
|
|
float& left, float& right, float& bottom, float& top,
|
|
float& nearVal, float& farVal,
|
|
glm::vec4& nearClipPlane, glm::vec4& farClipPlane) const;
|
|
|
|
};
|