From: Ian Romanick Date: Fri, 11 Oct 2013 19:20:57 +0000 (-0700) Subject: i965: Refactor the renderer string creation out of intelGetString X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=83ffe47be0e26dcbaf917807447d82d53bb2c13b;p=mesa.git i965: Refactor the renderer string creation out of intelGetString This will soon be used in intel_screen.c from a function that doesn't have a gl_context. v2: Delete local variables that are now unused. This matches v1 of the changes to the i915 driver. Signed-off-by: Ian Romanick Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index 7adf07289d7..700230b4932 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -96,29 +96,37 @@ brw_query_samples_for_format(struct gl_context *ctx, GLenum target, const char *const brw_vendor_string = "Intel Open Source Technology Center"; +const char * +brw_get_renderer_string(unsigned deviceID) +{ + const char *chipset; + static char buffer[128]; + + switch (deviceID) { +#undef CHIPSET +#define CHIPSET(id, symbol, str) case id: chipset = str; break; +#include "pci_ids/i965_pci_ids.h" + default: + chipset = "Unknown Intel Chipset"; + break; + } + + (void) driGetRendererString(buffer, chipset, 0); + return buffer; +} + static const GLubyte * intelGetString(struct gl_context * ctx, GLenum name) { const struct brw_context *const brw = brw_context(ctx); - const char *chipset; - static char buffer[128]; switch (name) { case GL_VENDOR: return (GLubyte *) brw_vendor_string; case GL_RENDERER: - switch (brw->intelScreen->deviceID) { -#undef CHIPSET -#define CHIPSET(id, family, str) case id: chipset = str; break; -#include "pci_ids/i965_pci_ids.h" - default: - chipset = "Unknown Intel Chipset"; - break; - } - - (void) driGetRendererString(buffer, chipset, 0); - return (GLubyte *) buffer; + return + (GLubyte *) brw_get_renderer_string(brw->intelScreen->deviceID); default: return NULL; diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index 6b15c483b4f..8b1cbb34d7b 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -1463,6 +1463,8 @@ extern void intelInitClearFuncs(struct dd_function_table *functions); */ extern const char *const brw_vendor_string; +extern const char *brw_get_renderer_string(unsigned deviceID); + extern void intelFinish(struct gl_context * ctx); enum {