Lines Matching defs:height
910 tx_compress_dxt1(int srccomps, int width, int height,
924 /* fprintf(stderr, "dxt1 tex width %d tex height %d dstRowStride %d\n",
925 width, height, dstRowStride); */
926 for (int j = 0; j < height; j += 4) {
927 if (height > j + 3) numypixels = 4;
928 else numypixels = height - j;
943 tx_compress_dxt3(int srccomps, int width, int height,
954 /* fprintf(stderr, "dxt3 tex width %d tex height %d dstRowStride %d\n",
955 width, height, dstRowStride); */
956 for (int j = 0; j < height; j += 4) {
957 if (height > j + 3) numypixels = 4;
958 else numypixels = height - j;
981 tx_compress_dxt5(int srccomps, int width, int height,
992 /* fprintf(stderr, "dxt5 tex width %d tex height %d dstRowStride %d\n",
993 width, height, dstRowStride); */
994 for (int j = 0; j < height; j += 4) {
995 if (height > j + 3) numypixels = 4;
996 else numypixels = height - j;
1012 tx_compress_dxtn(GLint srccomps, GLint width, GLint height,
1018 tx_compress_dxt1(srccomps, width, height, srcPixData,
1022 tx_compress_dxt1(srccomps, width, height, srcPixData,
1026 tx_compress_dxt3(srccomps, width, height, srcPixData,
1030 tx_compress_dxt5(srccomps, width, height, srcPixData,