From 91f022516f064b632e8dc017b3351abf8d5dab23 Mon Sep 17 00:00:00 2001 From: tyBrave Date: Thu, 2 Feb 2023 17:36:22 +0800 Subject: [PATCH] update shape code of invert transform Signed-off-by: tyBrave --- gpu_transform/src/main/cpp/constant/constant_shape.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpu_transform/src/main/cpp/constant/constant_shape.h b/gpu_transform/src/main/cpp/constant/constant_shape.h index a7dcc1e..8030763 100644 --- a/gpu_transform/src/main/cpp/constant/constant_shape.h +++ b/gpu_transform/src/main/cpp/constant/constant_shape.h @@ -232,7 +232,7 @@ const char contrastFShaderStr[] = const char invertFShaderStr[] = "#version 300 es\n" "precision highp float;\n" - "int vec2 v_texCoord;\n" + "in vec2 v_texCoord;\n" "\n" "uniform lowp sampler2D s_TextureMap;\n" "layout(location = 0) out vec4 outColor;\n"