build: make release restore reproducible
This commit is contained in:
parent
b459e0cf0c
commit
c38f6b8852
129 changed files with 16810 additions and 188 deletions
|
|
@ -166,8 +166,11 @@ public sealed class HostInputCameraCompositionTests
|
|||
public CameraController? Camera { get; private set; }
|
||||
public CameraPointerInputController? Pointer { get; private set; }
|
||||
|
||||
public void PublishGpuFrameFlights(GpuFrameFlightController value) =>
|
||||
GpuFrames = PublishOnce(GpuFrames, value);
|
||||
public void PublishGpuFrameFlights(GpuFrameFlightController? value)
|
||||
{
|
||||
if (value is not null)
|
||||
GpuFrames = PublishOnce(GpuFrames, value);
|
||||
}
|
||||
|
||||
public void PublishGpuDevice(IGpuDevice value) =>
|
||||
GpuDevice = PublishOnce(GpuDevice, value);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue