Lines Matching refs:referenceSizes
50 const int referenceSizes[] = {r, g, b, a, d, s}; in checkAttachmentComponentSizeAtLeast() local
58 DE_STATIC_ASSERT(DE_LENGTH_OF_ARRAY(referenceSizes) == DE_LENGTH_OF_ARRAY(paramNames)); in checkAttachmentComponentSizeAtLeast()
60 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(referenceSizes); ++ndx) in checkAttachmentComponentSizeAtLeast()
62 if (referenceSizes[ndx] == -1) in checkAttachmentComponentSizeAtLeast()
74 if (state < referenceSizes[ndx]) in checkAttachmentComponentSizeAtLeast()
76 … << TestLog::Message << "// ERROR: Expected greater or equal to " << referenceSizes[ndx] << "; got… in checkAttachmentComponentSizeAtLeast()
87 const int referenceSizes[] = {r, g, b, a, d, s}; in checkAttachmentComponentSizeExactly() local
95 DE_STATIC_ASSERT(DE_LENGTH_OF_ARRAY(referenceSizes) == DE_LENGTH_OF_ARRAY(paramNames)); in checkAttachmentComponentSizeExactly()
97 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(referenceSizes); ++ndx) in checkAttachmentComponentSizeExactly()
99 if (referenceSizes[ndx] == -1) in checkAttachmentComponentSizeExactly()
111 if (state != referenceSizes[ndx]) in checkAttachmentComponentSizeExactly()
113 …testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << referenceSizes[ndx] << "; got " <… in checkAttachmentComponentSizeExactly()