Mesa (master): st/dri: make dri_drawable_validate_att static

George Sapountzis gsap7 at kemper.freedesktop.org
Fri Aug 13 20:10:47 UTC 2010


Module: Mesa
Branch: master
Commit: 5c0a0f219843fa283a0fd98dbe0544e8ea820c60
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=5c0a0f219843fa283a0fd98dbe0544e8ea820c60

Author: George Sapountzis <gsapountzis at gmail.com>
Date:   Thu Aug 12 00:03:56 2010 +0300

st/dri: make dri_drawable_validate_att static

---

 .../state_trackers/dri/common/dri_drawable.c       |    5 ++---
 .../state_trackers/dri/common/dri_drawable.h       |    4 ----
 2 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/src/gallium/state_trackers/dri/common/dri_drawable.c b/src/gallium/state_trackers/dri/common/dri_drawable.c
index fb07b45..1bdfdcc 100644
--- a/src/gallium/state_trackers/dri/common/dri_drawable.c
+++ b/src/gallium/state_trackers/dri/common/dri_drawable.c
@@ -158,9 +158,9 @@ dri_destroy_buffer(__DRIdrawable * dPriv)
 
 /**
  * Validate the texture at an attachment.  Allocate the texture if it does not
- * exist.
+ * exist.  Used by the TFP extension.
  */
-void
+static void
 dri_drawable_validate_att(struct dri_drawable *drawable,
                           enum st_attachment_type statt)
 {
@@ -181,7 +181,6 @@ dri_drawable_validate_att(struct dri_drawable *drawable,
 
    drawable->texture_stamp = drawable->dPriv->lastStamp - 1;
 
-   /* this calles into the manager */
    drawable->base.validate(&drawable->base, statts, count, NULL);
 }
 
diff --git a/src/gallium/state_trackers/dri/common/dri_drawable.h b/src/gallium/state_trackers/dri/common/dri_drawable.h
index 8d108cc..74e662d 100644
--- a/src/gallium/state_trackers/dri/common/dri_drawable.h
+++ b/src/gallium/state_trackers/dri/common/dri_drawable.h
@@ -89,10 +89,6 @@ dri_drawable_get_format(struct dri_drawable *drawable,
                         enum pipe_format *format,
                         unsigned *bind);
 
-void
-dri_drawable_validate_att(struct dri_drawable *drawable,
-                          enum st_attachment_type statt);
-
 extern const __DRItexBufferExtension driTexBufferExtension;
 
 #endif




More information about the mesa-commit mailing list