Home
last modified time | relevance | path

Searched refs:w00 (Results 1 – 9 of 9) sorted by relevance

/third_party/vk-gl-cts/framework/randomshaders/
DrsgProgramExecutor.cpp112 float w00 = (1.0f-x)*(1.0f-y); in interpolateVertexQuad() local
116 return quad.x()*w00 + quad.y()*w10 + quad.z()*w01 + quad.w()*w11; in interpolateVertexQuad()
/third_party/mesa3d/src/mesa/main/
Dtexcompress_astc.cpp1288 int w00 = 16 - fs - ft + w11; in compute_infill_weights() local
1297 i0 = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >> 4; in compute_infill_weights()
1303 i1 = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >> 4; in compute_infill_weights()
1315 i = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >> 4; in compute_infill_weights()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_sample_soa.c1443 LLVMValueRef w00, w01, w10, w11, wx0, wy0, c_weight, tmp; in lp_build_sample_image_linear() local
1446 w00 = lp_build_mul(coord_bld, wx0, wy0); in lp_build_sample_image_linear()
1452 c_weight = lp_build_select(coord_bld, c00, w00, coord_bld->zero); in lp_build_sample_image_linear()
1462 w00 = lp_build_add(coord_bld, w00, c_weight); in lp_build_sample_image_linear()
1463 w00 = lp_build_andnot(coord_bld, w00, c00f); in lp_build_sample_image_linear()
1474 colors0[chan] = lp_build_mul(coord_bld, w00, in lp_build_sample_image_linear()
1506 colors0[0] = lp_build_and(coord_bld, w00, cmpval00); in lp_build_sample_image_linear()
/third_party/vk-gl-cts/framework/common/
DtcuAstcUtil.cpp1292 const deUint32 w00 = 16 - fX - fY + w11; in interpolateWeights() local
1300 … DE_ASSERT(deInBounds32(i00, 0, blockMode.weightGridWidth*blockMode.weightGridHeight) || w00 == 0); in interpolateWeights()
1313 …dst[texelY*blockWidth + texelX].w[texelWeightNdx] = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >>… in interpolateWeights()
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/
DOES_texture_compression_astc.txt1791 w00 = 16 - fs - ft + w11;
1792 i = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >> 4;
/third_party/openGLES/extensions/KHR/
DKHR_texture_compression_astc_hdr.txt1686 w00 = 16 - fs - ft + w11;
1687 i = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >> 4;
/third_party/openGLES/extensions/OES/
DOES_texture_compression_astc.txt1804 w00 = 16 - fs - ft + w11;
1805 i = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >> 4;
/third_party/skia/third_party/externals/opengl-registry/extensions/KHR/
DKHR_texture_compression_astc_hdr.txt1675 w00 = 16 - fs - ft + w11;
1676 i = (p00*w00 + p01*w01 + p10*w10 + p11*w11 + 8) >> 4;
/third_party/vk-gl-cts/framework/opengl/
DgluTextureTestUtil.cpp160 float w00 = (1.0f-x)*(1.0f-y); in bilinearInterpolate() local
164 return quad.x()*w00 + quad.y()*w10 + quad.z()*w01 + quad.w()*w11; in bilinearInterpolate()