fix dummy rasterizer

This commit is contained in:
AlexHolly 2017-08-24 15:07:41 +02:00
parent fb90ac8e48
commit b18049c2aa
2 changed files with 5 additions and 0 deletions

View File

@ -1679,6 +1679,10 @@ void RasterizerDummy::custom_shade_model_get_param_info(int p_model, List<Proper
};
void RasterizerDummy::set_time_scale(float p_scale) {
}
void RasterizerDummy::init() {
}

View File

@ -735,6 +735,7 @@ public:
virtual void custom_shade_model_set_param_info(int p_model, const List<PropertyInfo> &p_info);
virtual void custom_shade_model_get_param_info(int p_model, List<PropertyInfo> *p_info) const;
virtual void set_time_scale(float p_scale);
virtual void init();
virtual void finish();