Home
last modified time | relevance | path

Searched refs:d3d9FormatInfo (Results 1 – 2 of 2) sorted by relevance

/external/angle/src/libANGLE/renderer/d3d/d3d9/
DImage9.cpp241 const d3d9::TextureFormat &d3d9FormatInfo = d3d9::GetTextureFormatInfo(internalformat); in redefine() local
242 mD3DFormat = d3d9FormatInfo.texFormat; in redefine()
243 mRenderable = (d3d9FormatInfo.renderFormat != D3DFMT_UNKNOWN); in redefine()
246 mDirty = (d3d9FormatInfo.dataInitializerFunction != nullptr); in redefine()
530 const d3d9::TextureFormat &d3d9FormatInfo = d3d9::GetTextureFormatInfo(mInternalFormat); in loadCompressedData() local
532 ASSERT(area.x % d3d9::GetD3DFormatInfo(d3d9FormatInfo.texFormat).blockWidth == 0); in loadCompressedData()
533 ASSERT(area.y % d3d9::GetD3DFormatInfo(d3d9FormatInfo.texFormat).blockHeight == 0); in loadCompressedData()
535 ASSERT(d3d9FormatInfo.loadFunction != nullptr); in loadCompressedData()
542 d3d9FormatInfo.loadFunction(area.width, area.height, area.depth, in loadCompressedData()
DRenderer9.cpp2546 const d3d9::TextureFormat &d3d9FormatInfo = d3d9::GetTextureFormatInfo(format); in createRenderTarget() local
2562 width, height, d3d9FormatInfo.renderFormat, in createRenderTarget()
2567 requiresInitialization = (d3d9FormatInfo.dataInitializerFunction != nullptr); in createRenderTarget()
2570 result = mDevice->CreateRenderTarget(width, height, d3d9FormatInfo.renderFormat, in createRenderTarget()
2577 width, height, 1, D3DUSAGE_RENDERTARGET, d3d9FormatInfo.texFormat, in createRenderTarget()