radeonsi: remove unused r600_memory_object::offset

The real offset is passed through resource_from_memobj.

Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
This commit is contained in:
Marek Olšák
2018-06-21 22:04:33 -04:00
parent 45004abfd5
commit e5df04f13d
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -390,7 +390,6 @@ struct r600_memory_object {
struct pipe_memory_object b;
struct pb_buffer *buf;
uint32_t stride;
uint32_t offset;
};
/* Saved CS data for debugging features. */
@@ -2409,7 +2409,6 @@ si_memobj_from_handle(struct pipe_screen *screen,
memobj->b.dedicated = dedicated;
memobj->buf = buf;
memobj->stride = stride;
memobj->offset = offset;
return (struct pipe_memory_object *)memobj;