mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-12-23 20:41:50 +01:00
Implement Maxwell3D Vertex Buffer Instance Rate
Implements the `isVertexInputRatePerInstance` register array which controls if the vertex input rate is either per-vertex or per-instance. This works in conjunction with the vertex attribute divisor for per-instance attribute repetition of attributes.
This commit is contained in:
parent
476c070c7a
commit
612f324e78
@ -784,6 +784,10 @@ namespace skyline::gpu::interconnect {
|
|||||||
vertexBindings[index].stride = stride;
|
vertexBindings[index].stride = stride;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void SetVertexBufferInputRate(u32 index, bool isPerInstance) {
|
||||||
|
vertexBindings[index].inputRate = isPerInstance ? vk::VertexInputRate::eInstance : vk::VertexInputRate::eVertex;
|
||||||
|
}
|
||||||
|
|
||||||
void SetVertexBufferIovaHigh(u32 index, u32 high) {
|
void SetVertexBufferIovaHigh(u32 index, u32 high) {
|
||||||
vertexBindingIovas[index].high = high;
|
vertexBindingIovas[index].high = high;
|
||||||
}
|
}
|
||||||
|
@ -336,6 +336,9 @@ namespace skyline::soc::gm20b::engine::maxwell3d {
|
|||||||
}) \
|
}) \
|
||||||
MAXWELL3D_ARRAY_STRUCT_CASE(vertexBuffers, index, divisor, { \
|
MAXWELL3D_ARRAY_STRUCT_CASE(vertexBuffers, index, divisor, { \
|
||||||
context.SetVertexBufferDivisor(index, divisor); \
|
context.SetVertexBufferDivisor(index, divisor); \
|
||||||
|
}) \
|
||||||
|
MAXWELL3D_ARRAY_CASE(isVertexInputRatePerInstance, index, { \
|
||||||
|
context.SetVertexBufferInputRate(index, isVertexInputRatePerInstance); \
|
||||||
})
|
})
|
||||||
|
|
||||||
BOOST_PP_REPEAT(16, VERTEX_BUFFER_CALLBACKS, 0)
|
BOOST_PP_REPEAT(16, VERTEX_BUFFER_CALLBACKS, 0)
|
||||||
|
@ -206,6 +206,8 @@ namespace skyline::soc::gm20b::engine::maxwell3d {
|
|||||||
|
|
||||||
Register<0x61F, float> depthBiasClamp;
|
Register<0x61F, float> depthBiasClamp;
|
||||||
|
|
||||||
|
Register<0x620, std::array<u32, type::VertexBufferCount>> isVertexInputRatePerInstance; //!< A per-VBO boolean denoting if the vertex input rate should be per vertex or per instance
|
||||||
|
|
||||||
Register<0x646, u32> cullFaceEnable;
|
Register<0x646, u32> cullFaceEnable;
|
||||||
Register<0x647, type::FrontFace> frontFace;
|
Register<0x647, type::FrontFace> frontFace;
|
||||||
Register<0x648, type::CullFace> cullFace;
|
Register<0x648, type::CullFace> cullFace;
|
||||||
|
Loading…
Reference in New Issue
Block a user