aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/cl_kernels/pixelwise_mul_int.cl
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/CL/cl_kernels/pixelwise_mul_int.cl')
-rw-r--r--src/core/CL/cl_kernels/pixelwise_mul_int.cl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/CL/cl_kernels/pixelwise_mul_int.cl b/src/core/CL/cl_kernels/pixelwise_mul_int.cl
index 05c437cd17..e6dfd3043d 100644
--- a/src/core/CL/cl_kernels/pixelwise_mul_int.cl
+++ b/src/core/CL/cl_kernels/pixelwise_mul_int.cl
@@ -25,9 +25,9 @@
#ifdef SATURATE
#define CONVERT_OP_INT_STR(x, type) (convert_##type##_sat(x))
-#else
+#else /* SATURATE */
#define CONVERT_OP_INT_STR(x, type) (convert_##type(x))
-#endif
+#endif /* SATURATE */
#define CONVERT_OP_INT(x, type) CONVERT_OP_INT_STR(x, type)
/** Performs a pixelwise multiplication with integer scale of integer inputs.