From 1d0349d3b5d9a263251fcb3b0d7e135d4731bfd0 Mon Sep 17 00:00:00 2001 From: Bin Jin Date: Thu, 7 Mar 2019 15:06:24 +0000 Subject: vo_gpu: add two useful operators to user shader modulo operator could be used to check if size is multiple of a certain number. equal operator could be used to verify if size of different textures aligns. --- video/out/gpu/user_shaders.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'video/out/gpu/user_shaders.h') diff --git a/video/out/gpu/user_shaders.h b/video/out/gpu/user_shaders.h index 8d8cc6bde0..a477e3ce3d 100644 --- a/video/out/gpu/user_shaders.h +++ b/video/out/gpu/user_shaders.h @@ -30,9 +30,11 @@ enum szexp_op { SZEXP_OP_SUB, SZEXP_OP_MUL, SZEXP_OP_DIV, + SZEXP_OP_MOD, SZEXP_OP_NOT, SZEXP_OP_GT, SZEXP_OP_LT, + SZEXP_OP_EQ, }; enum szexp_tag { -- cgit v1.2.3