i965: Remove the now unused intel_renderbuffer::draw_offset field.

The previous commit removed the last use of this field.

Reviewed-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
(cherry picked from commit f73caddd33)
This commit is contained in:
Kenneth Graunke 2011-07-25 21:13:43 -07:00 committed by Ian Romanick
parent 8589ca000a
commit 69720cb0c4
2 changed files with 0 additions and 2 deletions

View file

@ -637,7 +637,6 @@ intel_renderbuffer_set_draw_offset(struct intel_renderbuffer *irb,
zoffset,
&dst_x, &dst_y);
irb->draw_offset = (dst_y * mt->region->pitch + dst_x) * mt->cpp;
irb->draw_x = dst_x;
irb->draw_y = dst_y;
}

View file

@ -58,7 +58,6 @@ struct intel_renderbuffer
/** \} */
GLuint draw_offset; /**< Offset of drawing address within the region */
GLuint draw_x, draw_y; /**< Offset of drawing within the region */
};