소스 검색

no message

Hongtae Kim 5 년 전
부모
커밋
8996975947
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      Samples/Texture/Texture.cpp

+ 1
- 1
Samples/Texture/Texture.cpp 파일 보기

@@ -42,7 +42,7 @@ public:
42 42
                 DKObject<DKCommandBuffer> cb = queue->CreateCommandBuffer();
43 43
                 DKObject<DKCopyCommandEncoder> encoder = cb->CreateCopyCommandEncoder();
44 44
                 encoder->CopyFromBufferToTexture(stagingBuffer,
45
-                                                 { 0, uint32_t(bytesPerPixel * width), height },
45
+                                                 { 0, width, height },
46 46
                                                  tex,
47 47
                                                  { 0,0, 0,0,0 },
48 48
                                                  { width,height,1 });