X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fopenvr%2Fopenvrcombiner.h;h=5b9e3b4235a26d49377b19c71145d67a1981e5a6;hb=7ad8d41683649816d3d162f614dc8bb585053311;hp=58a24c9c9f2708eebac8c2f048e7e762ec4dada7;hpb=c07c707c480f4e989caee17541187f08f136d216;p=libs%2Fvr.git diff --git a/source/openvr/openvrcombiner.h b/source/openvr/openvrcombiner.h index 58a24c9..5b9e3b4 100644 --- a/source/openvr/openvrcombiner.h +++ b/source/openvr/openvrcombiner.h @@ -7,19 +7,20 @@ namespace Msp { namespace VR { -class OpenVRDevice; +class OpenVRSystem; class OpenVRCombiner: public StereoCombiner { private: struct Private; - OpenVRDevice &device; + OpenVRSystem &device; GL::View &view; public: - OpenVRCombiner(OpenVRDevice &, GL::View &); + OpenVRCombiner(OpenVRSystem &, GL::View &); + virtual bool is_mirroring_supported() const { return true; } virtual void prepare() const; virtual void render(const GL::Texture2D &, const GL::Texture2D &) const; };