public void PrepareRender()
 {
     device.Post(prepareRender);
 }
 public void Bind()
 {
     device.Post(bind);
 }
 public void SetEmpty(int width, int height)
 {
     device.Post(setEmpty, Tuple.Create(width, height));
 }
コード例 #4
0
 public void SetEmpty(int width, int height)
 {
     device.Post(setEmpty, (width, height));
 }