Browse Source

버퍼 갱신 크기오류 수정

Hongtae Kim 5 years ago
parent
commit
d0424c92d9
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Samples/Mesh/Mesh.cpp

+ 2
- 2
Samples/Mesh/Mesh.cpp View File

324
                 //ubo.modelMatrix.Multiply(trans.Matrix4());
324
                 //ubo.modelMatrix.Multiply(trans.Matrix4());
325
 
325
 
326
                 //memcpy(uboBuffer->Contents(), &ubo, sizeof(ubo));
326
                 //memcpy(uboBuffer->Contents(), &ubo, sizeof(ubo));
327
-                bindSet->SetBuffer(0, uboBuffer, 0, sizeof(ubo));
327
+                bindSet->SetBuffer(0, uboBuffer, 0, sizeof(UBO));
328
             }
328
             }
329
 			         
329
 			         
330
             bindSet->SetTexture(1, texture);
330
             bindSet->SetTexture(1, texture);
393
                     DKAffineTransform3 trans = tm * DKAffineTransform3(quat);
393
                     DKAffineTransform3 trans = tm * DKAffineTransform3(quat);
394
                     ubo->modelMatrix = trans.Matrix4();
394
                     ubo->modelMatrix = trans.Matrix4();
395
                     uboBuffer->Flush();
395
                     uboBuffer->Flush();
396
-                    bindSet->SetBuffer(0, uboBuffer, 0, sizeof(ubo));
396
+                    bindSet->SetBuffer(0, uboBuffer, 0, sizeof(UBO));
397
                 }
397
                 }
398
 
398
 
399
 				encoder->SetRenderPipelineState(pipelineState);
399
 				encoder->SetRenderPipelineState(pipelineState);