X-Git-Url: http://git.tdb.fi/?p=libs%2Fvr.git;a=blobdiff_plain;f=source%2Fopenvr%2Fopenvrcombiner.h;h=33f266c9988cb95541d1e6d021097e2d385af0dc;hp=58a24c9c9f2708eebac8c2f048e7e762ec4dada7;hb=a0a8e3a7c5a229dcccd1af3a3edeac5ba8156954;hpb=c07c707c480f4e989caee17541187f08f136d216 diff --git a/source/openvr/openvrcombiner.h b/source/openvr/openvrcombiner.h index 58a24c9..33f266c 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 &system; 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; };