aboutsummaryrefslogtreecommitdiff
path: root/misc/winresource.rc
Commit message (Expand)AuthorAge
* Implement DPI scaling for Windows (#9586)sfan52020-04-11
* Fix msvc annoyances (#5963)adrido2017-06-27
* Revert the upper-case PROJECT_NAME nonsense that was part of #2402sfan52015-04-27
* Clean up and tweak build systemShadowNinja2015-03-27
* Improved win32 file version informationsapier2014-03-02
* Fix things for cross-compiling using mingwPerttu Ahola2012-04-02
s="hl com">the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include "core.h" class RenderingCoreStereo : public RenderingCore { protected: scene::ICameraSceneNode *cam; core::matrix4 base_transform; float eye_offset; void beforeDraw() override; virtual void useEye(bool right); virtual void resetEye(); void renderBothImages(); public: RenderingCoreStereo(IrrlichtDevice *_device, Client *_client, Hud *_hud); };