Searched refs:dimensionsOK (Results 1 – 3 of 3) sorted by relevance
/third_party/mesa3d/src/mesa/main/ |
D | texstorage.c | 443 GLboolean sizeOK = GL_TRUE, dimensionsOK = GL_TRUE; in texture_storage() local 462 dimensionsOK = _mesa_legal_texture_dimensions(ctx, target, 0, in texture_storage() 470 if (dimensionsOK && sizeOK) { in texture_storage() 481 if (!dimensionsOK) { in texture_storage()
|
D | textureview.c | 540 GLboolean sizeOK, dimensionsOK; in texture_view() local 618 dimensionsOK = _mesa_legal_texture_dimensions(ctx, target, 0, in texture_view() 620 if (!dimensionsOK) { in texture_view()
|
D | teximage.c | 2980 bool dimensionsOK = true, sizeOK = true; in teximage() local 3084 dimensionsOK = _mesa_legal_texture_dimensions(ctx, target, level, width, in teximage() 3101 if (dimensionsOK && sizeOK) { in teximage() 3114 if (!dimensionsOK) { in teximage() 6745 GLboolean sizeOK, dimensionsOK, samplesOK; in texture_image_multisample() local 6839 dimensionsOK = _mesa_legal_texture_dimensions(ctx, target, 0, in texture_image_multisample() 6846 if (samplesOK && dimensionsOK && sizeOK) { in texture_image_multisample() 6857 if (!dimensionsOK) { in texture_image_multisample()
|