Merge pull request #7763 from Limb/fixwindowscompile

Fixed compilation issues with Visual Studio
This commit is contained in:
Rémi Verschelde 2017-02-12 23:22:02 +01:00 committed by GitHub
commit bbc6543172
3 changed files with 8 additions and 1 deletions

View file

@ -2395,6 +2395,11 @@ bool OS_Windows::is_vsync_enabled() const{
return true;
}
bool OS_Windows::check_feature_support(const String& p_feature) {
return VisualServer::get_singleton()->has_os_feature(p_feature);
}
OS_Windows::OS_Windows(HINSTANCE _hInstance) {

View file

@ -286,6 +286,8 @@ public:
virtual void set_use_vsync(bool p_enable);
virtual bool is_vsync_enabled() const;
virtual bool check_feature_support(const String& p_feature);
OS_Windows(HINSTANCE _hInstance);
~OS_Windows();

View file

@ -2967,7 +2967,7 @@ void VisualServerScene::_bake_gi_downscale_light(int p_idx, int p_level, const G
}
divisor=Math::lerp(8.0,divisor,p_propagate);
divisor=Math::lerp((float)8.0,divisor,p_propagate);
sum[0]/=divisor;
sum[1]/=divisor;
sum[2]/=divisor;