i965/blorp: De-virtualize brw_blorp_{mip,surface}_info::set() function.
authorPaul Berry <stereotype441@gmail.com>
Wed, 6 Jun 2012 17:59:56 +0000 (10:59 -0700)
committerPaul Berry <stereotype441@gmail.com>
Thu, 7 Jun 2012 18:03:15 +0000 (11:03 -0700)
Even though brw_blorp_surface_info is derived from brw_blorp_mip_info,
this function doesn't need to be virtual, because it is never accessed
through a base class pointer.  Making the function non-virtual will
allow it to take additional parameters in the brw_blorp_surface_info
case.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_blorp.h

index bff7715ee84af1c453951d6550550f29f9c6a564..0de3d1e5d24df91f0ad330eb7e81cbc868d68c59 100644 (file)
@@ -46,8 +46,8 @@ class brw_blorp_mip_info
 public:
    brw_blorp_mip_info();
 
-   virtual void set(struct intel_mipmap_tree *mt,
-                    unsigned int level, unsigned int layer);
+   void set(struct intel_mipmap_tree *mt,
+            unsigned int level, unsigned int layer);
    void get_draw_offsets(uint32_t *draw_x, uint32_t *draw_y) const;
 
    void get_miplevel_dims(uint32_t *width, uint32_t *height) const
@@ -66,8 +66,8 @@ class brw_blorp_surface_info : public brw_blorp_mip_info
 public:
    brw_blorp_surface_info();
 
-   virtual void set(struct intel_mipmap_tree *mt,
-                    unsigned int level, unsigned int layer);
+   void set(struct intel_mipmap_tree *mt,
+            unsigned int level, unsigned int layer);
 
    /* Setting this flag indicates that the buffer's contents are W-tiled
     * stencil data, but the surface state should be set up for Y tiled