From 2aca2dadda4cc9c378049457885d33a4eede9768 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Sat, 24 Sep 2016 14:42:28 -0700 Subject: glamor: Fix link failure on GLES2. Current Mesa requires that the precision qualifier on uniforms matches between stages, even if (as in this case) the uniform isn't used in one of the stages. Signed-off-by: Eric Anholt Reviewed-by: Keith Packard --- glamor/glamor_program.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'glamor') diff --git a/glamor/glamor_program.c b/glamor/glamor_program.c index dec116c75..23c102bc3 100644 --- a/glamor/glamor_program.c +++ b/glamor/glamor_program.c @@ -122,8 +122,7 @@ static glamor_location_var location_vars[] = { .vs_vars = ("uniform vec2 fill_offset;\n" "uniform vec2 fill_size_inv;\n" "varying vec2 fill_pos;\n"), - .fs_vars = ("uniform vec2 fill_size_inv;\n" - "varying vec2 fill_pos;\n") + .fs_vars = ("varying vec2 fill_pos;\n") }, { .location = glamor_program_location_font, -- cgit v1.2.3