diff --git a/examples/26-occlusion/occlusion.cpp b/examples/26-occlusion/occlusion.cpp index afe7c7809..223f02d04 100644 --- a/examples/26-occlusion/occlusion.cpp +++ b/examples/26-occlusion/occlusion.cpp @@ -254,7 +254,10 @@ class Occlusion : public entry::AppI } } - bgfx::dbgTextImage(5, 5, CUBES_DIM, CUBES_DIM, img, CUBES_DIM*2); + for (uint32_t xx = 0; xx < CUBES_DIM; ++xx) + { + bgfx::dbgTextImage(5 + xx*2, 5, 1, CUBES_DIM, img + xx*2, CUBES_DIM*2); + } // Advance to next frame. Rendering thread will be kicked to // process submitted rendering primitives. diff --git a/src/renderer_d3d9.cpp b/src/renderer_d3d9.cpp index 1697989c0..04351451f 100644 --- a/src/renderer_d3d9.cpp +++ b/src/renderer_d3d9.cpp @@ -3434,7 +3434,7 @@ namespace bgfx { namespace d3d9 { Query& query = m_query[m_control.m_read]; - uint64_t result; + uint32_t result; HRESULT hr = query.m_ptr->GetData(&result, sizeof(result), 0); if (S_FALSE == hr) {