diff options
| author | Walter McKelvie <walt@mckelvie.org> | 2026-08-02 20:19:32 +0200 |
|---|---|---|
| committer | dec05eba <dec05eba@protonmail.com> | 2026-08-02 20:20:12 +0200 |
| commit | 8397e7307eb68c857117d74ba332916bb7af6be4 (patch) | |
| tree | bb17714ed3e2e331220c36183dff021b5f9d21b9 /src/cli | |
| parent | f39ebf1a607b2f45c5049560756fb0f0054c5f6f (diff) | |
feat: Apple Silicon support
Diffstat (limited to 'src/cli')
| -rw-r--r-- | src/cli/commands.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cli/commands.c b/src/cli/commands.c index 12de13b..bf07285 100644 --- a/src/cli/commands.c +++ b/src/cli/commands.c @@ -53,6 +53,9 @@ static void list_gpu_info(gsr_egl *egl) { case GSR_GPU_VENDOR_BROADCOM: printf("vendor|broadcom\n"); break; + case GSR_GPU_VENDOR_APPLE: + printf("vendor|apple\n"); + break; } printf("card_path|%s\n", egl->card_path); } |
