aboutsummaryrefslogtreecommitdiff
path: root/client/shaders/minimap_shader/opengl_fragment.glsl
diff options
context:
space:
mode:
authorHan So Ri <2_0_2_0_@naver.com>2017-03-05 03:12:50 +0000
committerLoic Blot <loic.blot@unix-experience.fr>2017-04-06 08:37:39 +0200
commitf8ba6ce94f5120b3b9eeb91915b5ae575f455892 (patch)
treed1ecba976343a59ff005b21ba0a06a5932ab8b5d /client/shaders/minimap_shader/opengl_fragment.glsl
parent80a5f526343033ec2c4cbfef7797adb2511e7ed9 (diff)
downloadminetest-f8ba6ce94f5120b3b9eeb91915b5ae575f455892.tar.gz
minetest-f8ba6ce94f5120b3b9eeb91915b5ae575f455892.tar.bz2
minetest-f8ba6ce94f5120b3b9eeb91915b5ae575f455892.zip
Translated using Weblate (Korean)
Currently translated at 67.8% (623 of 918 strings)
Diffstat (limited to 'client/shaders/minimap_shader/opengl_fragment.glsl')
0 files changed, 0 insertions, 0 deletions
// Fail compilation if condition expr is not met. // Note that 'msg' must follow the format of a valid identifier, e.g. // STATIC_ASSERT(sizeof(foobar_t) == 40), foobar_t_is_wrong_size); #define STATIC_ASSERT(expr, msg) \ UNUSED_ATTRIBUTE typedef char msg[!!(expr) * 2 - 1] // Macros to facilitate writing position vectors to a stream // Usage: // v3s16 pos(1,2,3); // mystream << "message " << PP(pos) << std::endl; #define PP(x) "("<<(x).X<<","<<(x).Y<<","<<(x).Z<<")" #define PP2(x) "("<<(x).X<<","<<(x).Y<<")"