Esempio n. 1
0
 internal void CopyStructureCount(IBuffer dstBufferRef, int dstAlignedByteOffset, IUavBindable srcViewRef)
 {
     m_deviceContext.CopyStructureCount(dstBufferRef.Buffer, dstAlignedByteOffset, srcViewRef.Uav);
     CheckErrors();
 }
Esempio n. 2
0
 internal void CopyStructureCount(Buffer dstBufferRef, int dstAlignedByteOffset, UnorderedAccessView srcViewRef)
 {
     m_deviceContext.CopyStructureCount(dstBufferRef, dstAlignedByteOffset, srcViewRef);
     CheckErrors();
 }