Home | History | Annotate | Download | only in functional

Lines Matching full:getwidth

675 	return tcu::getSubregion(srcAccess, 0, 0, slice, srcAccess.getWidth(), srcAccess.getHeight(), 1);
770 vector<UVec4> data(dst.getWidth()*dst.getHeight());
772 glLog.glReadPixels(originX, originY, dst.getWidth(), dst.getHeight(), GL_RGBA_INTEGER, GL_UNSIGNED_INT, &data[0]);
775 for (int x = 0; x < dst.getWidth(); x++)
776 dst.setPixel(data[y*dst.getWidth() + x], x, y);
780 vector<IVec4> data(dst.getWidth()*dst.getHeight());
782 glLog.glReadPixels(originX, originY, dst.getWidth(), dst.getHeight(), GL_RGBA_INTEGER, GL_INT, &data[0]);
785 for (int x = 0; x < dst.getWidth(); x++)
786 dst.setPixel(data[y*dst.getWidth() + x], x, y);
1692 const IVec2 dispatchSizeXY (NUM_INVOCATIONS_PER_PIXEL*resultSlice.getWidth(), resultSlice.getHeight());
1700 for (int x = 0; x < resultSlice.getWidth(); x++)
1720 const IVec3 gid(x + i*resultSlice.getWidth(), y, sliceOrFaceNdx);
1785 const IVec2 dispatchSizeXY (resultSlice.getWidth(), resultSlice.getHeight());
1787 DE_ASSERT(resultSlice.getWidth() == NUM_INVOCATIONS_PER_PIXEL*m_endResultImageLayerSize.x() &&
2164 DE_ASSERT(resultSlice.getWidth() == m_imageWidth);
2172 for (int x = 0; x < resultSlice.getWidth(); x++)
2183 const IVec3 gid(x + i*resultSlice.getWidth(), y, sliceOrFaceNdx);
2223 DE_ASSERT(resultSlice.getWidth() == NUM_INVOCATIONS_PER_PIXEL*m_endResultImageWidth);
2703 DE_ASSERT(resultSlice.getWidth() == 1 && resultSlice.getHeight() == 1 && resultSlice.getDepth() == 1);
2918 (m_context.getRenderTarget().getWidth() < RENDER_SIZE || m_context.getRenderTarget().getHeight() < RENDER_SIZE))
2943 const int viewportX = (m_renderTarget == RENDERTARGET_DEFAULT) ? (rnd.getInt(0, renderCtx.getRenderTarget().getWidth() - viewportWidth)) : (0);