mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 16:11:44 +00:00
18 lines
No EOL
508 B
C#
18 lines
No EOL
508 B
C#
using Ryujinx.Graphics.Gpu.State;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Engine
|
|
{
|
|
partial class Methods
|
|
{
|
|
private void UniformBufferUpdate(int argument)
|
|
{
|
|
UniformBufferState uniformBuffer = _context.State.GetUniformBufferState();
|
|
|
|
_context.MemoryAccessor.Write(uniformBuffer.Address.Pack() + (uint)uniformBuffer.Offset, argument);
|
|
|
|
_context.State.SetUniformBufferOffset(uniformBuffer.Offset + 4);
|
|
|
|
_context.AdvanceSequence();
|
|
}
|
|
}
|
|
} |