Translator: Remove the "variables" entry from list of options

This flag is unused.  It is removed in a separate change to facilitate
rolling ANGLE into Chromium and vice versa.

Bug: chromium:1447314
Change-Id: I651f766e1c127f81c17ec46554bbdebd240f8c1c
Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/4568525
Reviewed-by: Geoff Lang <geofflang@chromium.org>
This commit is contained in:
Shahbaz Youssefi
2023-05-25 14:57:21 -04:00
parent 7b07818eb5
commit 37698dcf13

View File

@@ -26,7 +26,7 @@
// Version number for shader translation API.
// It is incremented every time the API changes.
#define ANGLE_SH_VERSION 330
#define ANGLE_SH_VERSION 331
enum ShShaderSpec
{
@@ -147,8 +147,9 @@ struct ShCompileOptions
// calling sh::GetObjectCode().
uint64_t objectCode : 1;
// Extracts attributes, uniforms, and varyings. Can be queried by calling ShGetVariableInfo().
uint64_t variables : 1;
// Unused. Kept to avoid unnecessarily changing the layout of this structure and tripping up
// the fuzzer's hash->bug map.
uint64_t unused2 : 1;
// Tracks the source path for shaders. Can be queried with getSourcePath().
uint64_t sourcePath : 1;