mirror of https://github.com/xemu-project/xemu.git
nv2a/vk: Drop unused vertex_buffer_inline field
This commit is contained in:
parent
477d5489ac
commit
1e5cae068a
|
@ -2009,8 +2009,6 @@ static void copy_remapped_attributes_to_inline_buffer(PGRAPHState *pg,
|
||||||
PGRAPHVkState *r = pg->vk_renderer_state;
|
PGRAPHVkState *r = pg->vk_renderer_state;
|
||||||
StorageBuffer *buffer = &r->storage_buffers[BUFFER_VERTEX_INLINE_STAGING];
|
StorageBuffer *buffer = &r->storage_buffers[BUFFER_VERTEX_INLINE_STAGING];
|
||||||
|
|
||||||
r->vertex_buffer_inline = remap.attributes;
|
|
||||||
|
|
||||||
if (!remap.attributes) {
|
if (!remap.attributes) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -382,7 +382,6 @@ typedef struct PGRAPHVkState {
|
||||||
VkVertexInputBindingDescription vertex_binding_descriptions[NV2A_VERTEXSHADER_ATTRIBUTES];
|
VkVertexInputBindingDescription vertex_binding_descriptions[NV2A_VERTEXSHADER_ATTRIBUTES];
|
||||||
int num_active_vertex_binding_descriptions;
|
int num_active_vertex_binding_descriptions;
|
||||||
hwaddr vertex_attribute_offsets[NV2A_VERTEXSHADER_ATTRIBUTES];
|
hwaddr vertex_attribute_offsets[NV2A_VERTEXSHADER_ATTRIBUTES];
|
||||||
uint16_t vertex_buffer_inline;
|
|
||||||
|
|
||||||
QTAILQ_HEAD(, SurfaceBinding) surfaces;
|
QTAILQ_HEAD(, SurfaceBinding) surfaces;
|
||||||
QTAILQ_HEAD(, SurfaceBinding) invalid_surfaces;
|
QTAILQ_HEAD(, SurfaceBinding) invalid_surfaces;
|
||||||
|
|
Loading…
Reference in New Issue