예제 #1
0
 public SubPass(String PassName)
 {
     myDebugMarker = new DebugMarkerMarkerInfoExt()
     {
         MarkerName = PassName
     };
 }
예제 #2
0
 public DeferredSubpass(SecondaryCommandBufferPool mySecondaryCommandPool, String Name)
 {
     myDebugMarker = new DebugMarkerMarkerInfoExt()
     {
         MarkerName = Name
     };
     this.mySecondaryCommandPool = mySecondaryCommandPool;
 }
예제 #3
0
 public void CmdDebugMarkerInsertEXT(DebugMarkerMarkerInfoExt pMarkerInfo)
 {
     unsafe {
         Interop.NativeMethods.vkCmdDebugMarkerInsertEXT(this.m, pMarkerInfo != null ? pMarkerInfo.m : (Interop.DebugMarkerMarkerInfoExt *) default(IntPtr));
     }
 }