remove unnecessary Wait calls from examples
parent
484bd7070c
commit
0a0c269dc9
|
@ -77,7 +77,6 @@ namespace MoonWorks.Test
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
GraphicsDevice.Submit(cmdbuf);
|
GraphicsDevice.Submit(cmdbuf);
|
||||||
GraphicsDevice.Wait();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Update(System.TimeSpan delta) { }
|
protected override void Update(System.TimeSpan delta) { }
|
||||||
|
|
|
@ -77,7 +77,6 @@ namespace MoonWorks.Test
|
||||||
textures[i] = Texture.LoadDDS(GraphicsDevice, cmdbuf, fs);
|
textures[i] = Texture.LoadDDS(GraphicsDevice, cmdbuf, fs);
|
||||||
}
|
}
|
||||||
GraphicsDevice.Submit(cmdbuf);
|
GraphicsDevice.Submit(cmdbuf);
|
||||||
GraphicsDevice.Wait();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Update(System.TimeSpan delta)
|
protected override void Update(System.TimeSpan delta)
|
||||||
|
|
|
@ -100,7 +100,6 @@ namespace MoonWorks.Test
|
||||||
cmdbuf.DispatchCompute(gradientUniforms.groupCountX, gradientUniforms.groupCountY, 1, offset);
|
cmdbuf.DispatchCompute(gradientUniforms.groupCountX, gradientUniforms.groupCountY, 1, offset);
|
||||||
|
|
||||||
GraphicsDevice.Submit(cmdbuf);
|
GraphicsDevice.Submit(cmdbuf);
|
||||||
GraphicsDevice.Wait();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Update(System.TimeSpan delta) { }
|
protected override void Update(System.TimeSpan delta) { }
|
||||||
|
|
|
@ -75,7 +75,6 @@ namespace MoonWorks.Test
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
GraphicsDevice.Submit(cmdbuf);
|
GraphicsDevice.Submit(cmdbuf);
|
||||||
GraphicsDevice.Wait();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Update(System.TimeSpan delta)
|
protected override void Update(System.TimeSpan delta)
|
||||||
|
|
|
@ -195,7 +195,6 @@ namespace MoonWorks.Test
|
||||||
);
|
);
|
||||||
|
|
||||||
GraphicsDevice.Submit(cmdbuf);
|
GraphicsDevice.Submit(cmdbuf);
|
||||||
GraphicsDevice.Wait();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Update(System.TimeSpan delta)
|
protected override void Update(System.TimeSpan delta)
|
||||||
|
|
|
@ -53,7 +53,6 @@ namespace MoonWorks.Test
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
GraphicsDevice.Submit(cmdbuf);
|
GraphicsDevice.Submit(cmdbuf);
|
||||||
GraphicsDevice.Wait();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Update(System.TimeSpan delta) { }
|
protected override void Update(System.TimeSpan delta) { }
|
||||||
|
|
|
@ -61,7 +61,6 @@ namespace MoonWorks.Test
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
GraphicsDevice.Submit(cmdbuf);
|
GraphicsDevice.Submit(cmdbuf);
|
||||||
GraphicsDevice.Wait();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Update(System.TimeSpan delta)
|
protected override void Update(System.TimeSpan delta)
|
||||||
|
@ -105,4 +104,3 @@ namespace MoonWorks.Test
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -90,7 +90,6 @@ namespace MoonWorks.Test
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
GraphicsDevice.Submit(cmdbuf);
|
GraphicsDevice.Submit(cmdbuf);
|
||||||
GraphicsDevice.Wait();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Update(System.TimeSpan delta)
|
protected override void Update(System.TimeSpan delta)
|
||||||
|
|
|
@ -38,7 +38,6 @@ namespace MoonWorks.Test
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
GraphicsDevice.Submit(cmdbuf);
|
GraphicsDevice.Submit(cmdbuf);
|
||||||
GraphicsDevice.Wait();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Update(System.TimeSpan delta) { }
|
protected override void Update(System.TimeSpan delta) { }
|
||||||
|
|
|
@ -57,7 +57,6 @@ namespace MoonWorks.Test
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
GraphicsDevice.Submit(cmdbuf);
|
GraphicsDevice.Submit(cmdbuf);
|
||||||
GraphicsDevice.Wait();
|
|
||||||
|
|
||||||
// Load the video
|
// Load the video
|
||||||
video = new Video.VideoAV1(TestUtils.GetVideoPath("hello.obu"), 25);
|
video = new Video.VideoAV1(TestUtils.GetVideoPath("hello.obu"), 25);
|
||||||
|
|
Loading…
Reference in New Issue