mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 17:40:39 +00:00
Fix compile error with initialisation of PixelValue
This commit is contained in:
@@ -320,8 +320,8 @@ bool ReplayOutput::AddThumbnail(WindowingData window, ResourceId texID, CompType
|
||||
|
||||
rdcpair<PixelValue, PixelValue> ReplayOutput::GetMinMax()
|
||||
{
|
||||
PixelValue minval = {0.0f, 0.0f, 0.0f, 0.0f};
|
||||
PixelValue maxval = {1.0f, 1.0f, 1.0f, 1.0f};
|
||||
PixelValue minval = {{0.0f, 0.0f, 0.0f, 0.0f}};
|
||||
PixelValue maxval = {{1.0f, 1.0f, 1.0f, 1.0f}};
|
||||
|
||||
ResourceId tex = m_pDevice->GetLiveID(m_RenderData.texDisplay.resourceId);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user