From 3b62b0d096d989b1eeacc0fe31d4d47b66094919 Mon Sep 17 00:00:00 2001 From: Martell Malone Date: Wed, 25 Oct 2023 20:45:08 -0700 Subject: [PATCH] nine: update verbiage for enduser device messages Sometimes the gpu might not be a card, implying pci card. It might be a soc or we might cpu emulate a device. Part-of: --- src/gallium/frontends/nine/adapter9.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/frontends/nine/adapter9.c b/src/gallium/frontends/nine/adapter9.c index c7a4b3b7c2d..0c090557608 100644 --- a/src/gallium/frontends/nine/adapter9.c +++ b/src/gallium/frontends/nine/adapter9.c @@ -86,7 +86,7 @@ NineAdapter9_ctor( struct NineAdapter9 *This, PIPE_SHADER_CAP_MAX_INPUTS) < 10 || hal->get_shader_param(hal, PIPE_SHADER_FRAGMENT, PIPE_SHADER_CAP_MAX_TEXTURE_SAMPLERS) < 16) { - ERR("Your card is not supported by Gallium Nine. Minimum requirement " + ERR("Your device is not supported by Gallium Nine. Minimum requirement " "is >= r500, >= nv50, >= i965\n"); return D3DERR_DRIVERINTERNALERROR; } @@ -99,7 +99,7 @@ NineAdapter9_ctor( struct NineAdapter9 *This, PIPE_SHADER_CAP_MAX_TEMPS) < 40 || hal->get_shader_param(hal, PIPE_SHADER_FRAGMENT, PIPE_SHADER_CAP_MAX_INPUTS) < 20) /* we don't pack inputs as much as we could */ - WARN_ONCE("Your card is at the limit of Gallium Nine requirements. Some games " + WARN_ONCE("Your device is at the limit of Gallium Nine requirements. Some games " "may run into issues because requirements are too tight\n"); return D3D_OK; }