Lines Matching refs:m_textureFormat
1315 , m_textureFormat (format)
1325 , m_textureFormat (textureFormat)
1341 const TextureFormat m_textureFormat;
1389 const deUint32 textureInternalFormatGL = glu::getInternalFormat(m_textureFormat);
1394 const float storeColorScale = isFormatTypeUnorm(m_textureFormat.type) ? 1.0f / (float)(maxImageDimension - 1)
1395 : isFormatTypeSnorm(m_textureFormat.type) ? 2.0f / (float)(maxImageDimension - 1)
1397 const float storeColorBias = isFormatTypeSnorm(m_textureFormat.type) ? -1.0f : 0.0f;
1399 const bool isIntegerTextureFormat = isFormatTypeInteger(m_textureFormat.type);
1404 LayeredImage reference (m_textureType, m_textureFormat, imageSize.x(), imageSize.y(), imageSize.z());
1431 if (m_imageFormat.type == TextureFormat::HALF_FLOAT && m_textureFormat.type != TextureFormat::HALF_FLOAT)
1433 else if (m_imageFormat.type == TextureFormat::FLOAT && m_textureFormat.type != TextureFormat::FLOAT)
1533 if (m_textureFormat != m_imageFormat)
1586 const bool compareOk = readTextureAndVerify(renderCtx, glLog, *texture1, *texture1Buf, m_textureType, m_textureFormat, imageSize, ImageLayerComparer(reference));