Lines Matching refs:getInternalFormat

542 		bool isDepth = (flags & Device::DEPTH_BUFFER) && Surface::isDepth(source->getInternalFormat());  in stretchRect()
543 …bool isStencil = (flags & Device::STENCIL_BUFFER) && Surface::isStencil(source->getInternalFormat(… in stretchRect()
558 bool equalFormats = source->getInternalFormat() == dest->getInternalFormat(); in stretchRect()
559 …dLayout = Surface::hasQuadLayout(source->getInternalFormat()) || Surface::hasQuadLayout(dest->getI… in stretchRect()
564 …bool smallMargin = sourcePitchB <= source->getWidth() * Surface::bytes(source->getInternalFormat()… in stretchRect()
566 …if((source->getInternalFormat() == FORMAT_A8R8G8B8 && dest->getInternalFormat() == FORMAT_X8R8G8B8… in stretchRect()
567 … (source->getInternalFormat() == FORMAT_X8R8G8B8 && dest->getInternalFormat() == FORMAT_A8R8G8B8)) in stretchRect()
588 …), dRect.height(), sourcePitchB, destPitchB, Surface::bytes(source->getInternalFormat()), flipX, f… in stretchRect()
601 …es, width, height, sourcePitchB, destPitchB, Surface::bytes(source->getInternalFormat()), flipX, f… in stretchRect()
639 …urce || !dest || Surface::isDepth(source->getInternalFormat()) || Surface::isStencil(source->getIn… in stretchCube()
659 bool equalFormats = source->getInternalFormat() == dest->getInternalFormat(); in stretchCube()
662 …if((source->getInternalFormat() == FORMAT_A8R8G8B8 && dest->getInternalFormat() == FORMAT_X8R8G8B8… in stretchCube()
663 … (source->getInternalFormat() == FORMAT_X8R8G8B8 && dest->getInternalFormat() == FORMAT_A8R8G8B8)) in stretchCube()
673 unsigned int bytes = dWidth * Surface::bytes(source->getInternalFormat()); in stretchCube()