Lines Matching defs:weight
1131 \brief Make up an approximate dx array to pass to U_WMREXTTEXTOUT_set(), based on character height and weight.
1133 Take abs. value of character height, get width by multiplying by 0.6, and correct weight
1139 \param weight LF_Weight Enumeration (character weight)
1145 uint32_t weight,
1152 if(U_FW_DONTCARE == weight)weight=U_FW_NORMAL;
1153 width = (uint32_t) U_ROUND(((float) (height > 0 ? height : -height)) * 0.6 * (0.00024*(float) weight + 0.904));
4443 \brief Make up an approximate dx array to pass to U_WMREXTTEXTOUT_get(), based on character height and weight.
4445 Take abs. value of character height, get width by multiplying by 0.6, and correct weight
4451 \param weight LF_Weight Enumeration (character weight)
4457 uint32_t weight,
4464 if(U_FW_DONTCARE == weight)weight=U_FW_NORMAL;
4465 width = (uint32_t) U_ROUND(((float) (height > 0 ? height : -height)) * 0.6 * (0.00024*(float) weight + 0.904));