aboutsummaryrefslogtreecommitdiff
path: root/po/sr_Cyrl/minetest.po
Commit message (Expand)AuthorAge
* Add translation of LANG_CODE in all languagesEkdohibs2017-08-24
* Fix updatepo.sh and run it.Ekdohibs2017-08-24
* Translated using Weblate (Serbian (cyrillic))Лазар Вукановић2017-06-03
* Run updatepo.shLoic Blot2017-05-21
* Footsteps without view bobbing (#5645)Louis Pearson2017-04-25
* Translated using Weblate (Serbian (cyrillic))lisacvuk2017-04-06
* Run updatepo.shest312016-08-30
* Translated using Weblate (Serbian (cyrillic))lisacvuk2016-08-30
* Run updatepo.shest312016-07-12
* Translated using Weblate (Serbian (cyrillic))Лазар Вукановић2016-07-12
* Added translation using Weblate (Serbian (cyrillic))Лазар Вукановић2016-07-12
#include "client/shader.h" class ShadowDepthShaderCB : public video::IShaderConstantSetCallBack { public: ShadowDepthShaderCB() : m_light_mvp_setting("LightMVP"), m_map_resolution_setting("MapResolution"), m_max_far_setting("MaxFar"), m_color_map_sampler_setting("ColorMapSampler") {} void OnSetMaterial(const video::SMaterial &material) override {} void OnSetConstants(video::IMaterialRendererServices *services, s32 userData) override; f32 MaxFar{2048.0f}, MapRes{1024.0f}; private: CachedVertexShaderSetting<f32, 16> m_light_mvp_setting; CachedVertexShaderSetting<f32> m_map_resolution_setting; CachedVertexShaderSetting<f32> m_max_far_setting; CachedPixelShaderSetting<s32> m_color_map_sampler_setting; };