Lines Matching refs:image0
1353 const auto image0 = loadImage(context.archive, format0, 0);
1356 DE_ASSERT(image0.width == 2 * image1.width && image0.height == 2 * image1.height);
1359 gl.compressedTexImage2D(GL_TEXTURE_2D, 0, format0, image0.width, image0.height, 0, image0.data.size(), image0.data.data());
1534 const auto image0 = loadImage(archive, formatInfo.internalFormat, 0);
1538 DE_ASSERT(image0.width == 2 * image1.width &&
1539 image0.height == 2 * image1.height &&
1540 image0.width % 4 == 0 &&
1541 image0.height % 4 == 0 &&
1542 image0.width == image2.width &&
1543 image0.height == image2.height);
1567 gl.renderbufferStorage(GL_RENDERBUFFER, bufferFormats[hasAlpha][formatInfo.issRGB], image0.width, image0.height);
1578 gl.viewport(0,0, image0.width, image0.height);
1604 gl.compressedTexImage2D(GL_TEXTURE_2D, 0, formatInfo.internalFormat, image0.width, image0.height, 0, image0.data.size(), image0.data.data());
1623 const auto referenceImage = drawTestImage(gl, texIds[0], image0.width, image0.height);
1631 const auto compressedImage = drawTestImage(gl, texIds[1], image0.width, image0.height);