Fixed compilation issues with Visual Studio

This commit is contained in:
Kenneth Lorthioir 2017-02-08 18:07:35 -05:00
parent b19c9bd198
commit 6961ed21bb
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;