Searched refs:sizeOK (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 465 sizeOK = st_TestProxyTexImage(ctx, target, levels, 0, texFormat, in texture_storage() 470 if (dimensionsOK && sizeOK) { in texture_storage() 488 if (!sizeOK) { in texture_storage()
|
D | textureview.c | 540 GLboolean sizeOK, dimensionsOK; in texture_view() local 626 sizeOK = st_TestProxyTexImage(ctx, target, 1, 0, texFormat, in texture_view() 629 if (!sizeOK) { in texture_view()
|
D | teximage.c | 2980 bool dimensionsOK = true, sizeOK = true; in teximage() local 3088 sizeOK = st_TestProxyTexImage(ctx, proxy_target(target), in teximage() 3101 if (dimensionsOK && sizeOK) { in teximage() 3121 if (!sizeOK) { in teximage() 6745 GLboolean sizeOK, dimensionsOK, samplesOK; in texture_image_multisample() local 6842 sizeOK = st_TestProxyTexImage(ctx, target, 0, 0, texFormat, in texture_image_multisample() 6846 if (samplesOK && dimensionsOK && sizeOK) { in texture_image_multisample() 6863 if (!sizeOK) { in texture_image_multisample()
|