HomeSort by relevance Sort by last modified time
    Searched refs:sourceDesc (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
Image9.cpp 45 D3DSURFACE_DESC sourceDesc;
46 result = sourceSurface->GetDesc(&sourceDesc);
49 ASSERT(sourceDesc.Format == destDesc.Format);
50 ASSERT(sourceDesc.Width == 1 || sourceDesc.Width / 2 == destDesc.Width);
51 ASSERT(sourceDesc.Height == 1 || sourceDesc.Height / 2 == destDesc.Height);
53 const d3d9::D3DFormat &d3dFormatInfo = d3d9::GetD3DFormatInfo(sourceDesc.Format);
69 d3dFormatInfo.mipGenerationFunction(sourceDesc.Width, sourceDesc.Height, 1, sourceData, sourceLocked.Pitch, 0
    [all...]
Blit9.cpp 292 D3DSURFACE_DESC sourceDesc;
294 source->GetDesc(&sourceDesc);
297 if (sourceDesc.Format == destDesc.Format && destDesc.Usage & D3DUSAGE_RENDERTARGET &&
478 D3DSURFACE_DESC sourceDesc;
479 surface->GetDesc(&sourceDesc);
483 HRESULT result = device->CreateTexture(sourceRect.right - sourceRect.left, sourceRect.bottom - sourceRect.top, 1, D3DUSAGE_RENDERTARGET, sourceDesc.Format, D3DPOOL_DEFAULT, &texture, NULL);

Completed in 393 milliseconds