mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 22:38:33 +00:00
18 lines
508 B
C#
18 lines
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();
|
||
|
}
|
||
|
}
|
||
|
}
|