agx: Drop cmdline version back to ES3.0

The patch needed for this to work was dropped. Fixes the standalone
compiler.

Fixes: 972409dacb ("asahi: Stub command-line compiler for AGX G13B")
Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11023>
This commit is contained in:
Alyssa Rosenzweig 2021-05-23 12:20:33 -04:00 committed by Alyssa Rosenzweig
parent 10e9a1bd32
commit 1f2d1423bb

View file

@ -92,7 +92,7 @@ compile_shader(char **argv)
};
struct standalone_options options = {
.glsl_version = 310, /* ES - needed for precision */
.glsl_version = 300, /* ES - needed for precision */
.do_link = true,
.lower_precision = true
};