aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2017-06-07 22:04:34 +0200
committerMarek Olšák <[email protected]>2017-06-19 20:09:52 +0200
commit66b6babbeab510b17cbb325dab3cd7cfbe1f9674 (patch)
tree53d5a7a6db7d022566a079f2cfe017d2a298345b /src
parent92b4ca45504e7ffc5f4fa385ada1be48e6123181 (diff)
st/mesa: simplify returning GL_VENDOR
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/mesa/state_tracker/st_cb_strings.c4
-rw-r--r--src/mesa/state_tracker/st_context.h2
2 files changed, 1 insertions, 5 deletions
diff --git a/src/mesa/state_tracker/st_cb_strings.c b/src/mesa/state_tracker/st_cb_strings.c
index 99d93a7c8f5..85fe5a7ef61 100644
--- a/src/mesa/state_tracker/st_cb_strings.c
+++ b/src/mesa/state_tracker/st_cb_strings.c
@@ -47,9 +47,7 @@ st_get_string(struct gl_context * ctx, GLenum name)
switch (name) {
case GL_VENDOR: {
- const char *vendor = screen->get_vendor( screen );
- util_snprintf(st->vendor, sizeof(st->vendor), "%s", vendor);
- return (GLubyte *) st->vendor;
+ return (GLubyte *) screen->get_vendor(screen);
}
case GL_RENDERER:
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h
index 7d04e892a8b..f640e23dcc1 100644
--- a/src/mesa/state_tracker/st_context.h
+++ b/src/mesa/state_tracker/st_context.h
@@ -163,8 +163,6 @@ struct st_context
GLuint fb_orientation;
} state;
- char vendor[100];
-
uint64_t dirty; /**< dirty states */
/** This masks out unused shader resources. Only valid in draw calls. */