Lines Matching refs:maTextureFormat
576 const DDPIXELFORMAT& getTextureFormat() const { return maTextureFormat; } in getTextureFormat()
648 DDPIXELFORMAT maTextureFormat; member in dxcanvas::__anon6484f8940111::DXRenderModule
1033 maTextureFormat(), in DXRenderModule()
1385 rtl_fillMemory( &maTextureFormat, in setup3DDevice()
1387 maTextureFormat.dwSize = sizeof(DDPIXELFORMAT); in setup3DDevice()
1388 …if( SUCCEEDED(mpDirect3DDevice->EnumTextureFormats( EnumTextureFormatsCallback, &maTextureFormat )… in setup3DDevice()
1391 if((maTextureFormat.dwFlags & (DDPF_ALPHAPIXELS | DDPF_RGB)) != (DDPF_ALPHAPIXELS | DDPF_RGB)) in setup3DDevice()
1393 else if(maTextureFormat.dwRGBAlphaBitMask != 0xFF000000) in setup3DDevice()
1395 else if(maTextureFormat.dwRBitMask != 0x00FF0000) in setup3DDevice()
1397 else if(maTextureFormat.dwGBitMask != 0x0000FF00) in setup3DDevice()
1399 else if(maTextureFormat.dwBBitMask != 0x000000FF) in setup3DDevice()
1406 maTextureFormat.dwRGBBitCount, in setup3DDevice()
1407 maTextureFormat.dwRBitMask, in setup3DDevice()
1408 maTextureFormat.dwGBitMask, in setup3DDevice()
1409 maTextureFormat.dwBBitMask, in setup3DDevice()
1410 maTextureFormat.dwRGBAlphaBitMask, in setup3DDevice()
1411 … maTextureFormat.dwFlags & DDPF_ALPHAPREMULT ? "premultiplied" : "non-premultiplied" ); in setup3DDevice()
1691 rtl_copyMemory( &aSurfaceDesc.ddpfPixelFormat, &maTextureFormat, sizeof(DDPIXELFORMAT) ); in createSystemMemorySurface()