X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fstereocombiner.h;h=8a351eaeb5d6f594b78733822c5731d04b14c059;hb=cb460150f6870c172a70237f283c9753250be361;hp=a4b91bfbf9edfa82c477301a5df26e74e0961911;hpb=cf1b08401da851dd98cde45d9e4acf6e1d185224;p=libs%2Fvr.git diff --git a/source/stereocombiner.h b/source/stereocombiner.h index a4b91bf..8a351ea 100644 --- a/source/stereocombiner.h +++ b/source/stereocombiner.h @@ -1,34 +1,35 @@ -#ifndef MSP_GL_STEREOCOMBINER_H_ -#define MSP_GL_STEREOCOMBINER_H_ +#ifndef MSP_VR_STEREOCOMBINER_H_ +#define MSP_VR_STEREOCOMBINER_H_ #include +#include namespace Msp { -namespace GL { - -class Texture2D; +namespace VR { class StereoCombiner { protected: - unsigned width_div; - unsigned height_div; - bool keep_aspect; + unsigned target_width; + unsigned target_height; + float render_aspect; Geometry::Angle fov; + float frustum_skew; StereoCombiner(); public: virtual ~StereoCombiner() { } - unsigned get_width_divisor() const { return width_div; } - unsigned get_height_divisor() const { return height_div; } - bool is_aspect_kept() const { return keep_aspect; } + float get_target_width() const { return target_width; } + float get_target_height() const { return target_height; } + float get_render_aspect() const { return render_aspect; } const Geometry::Angle &get_field_of_view() const { return fov; } + float get_frustum_skew() const { return frustum_skew; } - virtual void render(const Texture2D &, const Texture2D &) const = 0; + virtual void render(const GL::Texture2D &, const GL::Texture2D &) const = 0; }; -} // namespace GL +} // namespace VR } // namespace Msp #endif