Skip to content
Snippets Groups Projects
Commit 41d68c3f authored by Yiwei Zhang's avatar Yiwei Zhang
Browse files

virgl: remove renderer_data from virgl_context_blob


This is some leftover from the get_blob_done cleanup.

Signed-off-by: default avatarYiwei Zhang <zzyiwei@chromium.org>
Reviewed-by: default avatarChia-I Wu <olvaffe@gmail.com>
parent bcb3866f
No related branches found
No related tags found
No related merge requests found
Pipeline #501522 passed
This commit is part of merge request !692. Comments created here will be created in the context of that merge request.
......@@ -298,7 +298,6 @@ vkr_context_get_blob_locked(struct virgl_context *base,
blob->type = VIRGL_RESOURCE_FD_SHM;
blob->u.fd = fd;
blob->map_info = VIRGL_RENDERER_MAP_CACHE_CACHED;
blob->renderer_data = NULL;
return 0;
}
......@@ -377,8 +376,6 @@ vkr_context_get_blob_locked(struct virgl_context *base,
blob->map_info = VIRGL_RENDERER_MAP_CACHE_NONE;
}
blob->renderer_data = mem;
return 0;
}
......
......@@ -44,8 +44,6 @@ struct virgl_context_blob {
} u;
uint32_t map_info;
void *renderer_data;
};
struct virgl_context;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment