diff options
author | Michel Dänzer <michel.daenzer@amd.com> | 2014-12-24 11:46:46 +0900 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-12-25 13:03:10 -0800 |
commit | 11b85ab2fc944c0645df43180a6c7e2d6a06483a (patch) | |
tree | 1de808792001d1b8913f052997d7d1d41d19755c /glamor | |
parent | 8323d2e90150bb86a12d00a16269c69a24efc896 (diff) |
glamor: Make glamor_purge_fbo static
Only called from glamor_fbo.c now.
Signed-off-by: Michel Dänzer <michel.daenzer@amd.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'glamor')
-rw-r--r-- | glamor/glamor_fbo.c | 2 | ||||
-rw-r--r-- | glamor/glamor_priv.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/glamor/glamor_fbo.c b/glamor/glamor_fbo.c index d2aabb21c..8d73e4765 100644 --- a/glamor/glamor_fbo.c +++ b/glamor/glamor_fbo.c @@ -126,7 +126,7 @@ glamor_pixmap_fbo_cache_get(glamor_screen_private *glamor_priv, #endif } -void +static void glamor_purge_fbo(glamor_pixmap_fbo *fbo) { glamor_make_current(fbo->glamor_priv); diff --git a/glamor/glamor_priv.h b/glamor/glamor_priv.h index ffd327e13..f69949790 100644 --- a/glamor/glamor_priv.h +++ b/glamor/glamor_priv.h @@ -653,7 +653,6 @@ glamor_pixmap_fbo *glamor_create_fbo(glamor_screen_private *glamor_priv, int w, int h, GLenum format, int flag); void glamor_destroy_fbo(glamor_pixmap_fbo *fbo); void glamor_pixmap_destroy_fbo(glamor_pixmap_private *priv); -void glamor_purge_fbo(glamor_pixmap_fbo *fbo); void glamor_init_pixmap_fbo(ScreenPtr screen); void glamor_fini_pixmap_fbo(ScreenPtr screen); |