示例#1
0
 public GLCmdCommandEncoder(
     IGLCmdEncoderContextSorter instructions,
     IGLCmdGraphicsEncoder graphics,
     IGLCmdComputeEncoder compute,
     IGLCmdBlitEncoder blit
     )
 {
     mInstructions = instructions;
     Graphics      = graphics;
     Compute       = compute;
     Blit          = blit;
 }
示例#2
0
 public GLCmdBlitEncoder(IGLCmdEncoderContextSorter instructions, GLCmdBlitBag bag)
 {
     mBag          = bag;
     mInstructions = instructions;
 }