Searched refs:pfd (Results 1 - 8 of 8) sorted by relevance
/inkscape/src/libuemf/ |
H A D | uemf_print.c | 562 \param pfd U_PIXELFORMATDESCRIPTOR object 565 U_PIXELFORMATDESCRIPTOR pfd 567 printf("nSize:%u " ,pfd.nSize ); 568 printf("nVersion:%u " ,pfd.nVersion ); 569 printf("dwFlags:0x%8.8X " ,pfd.dwFlags ); 570 printf("iPixelType:%u " ,pfd.iPixelType ); 571 printf("cColorBits:%u " ,pfd.cColorBits ); 572 printf("cRedBits:%u " ,pfd.cRedBits ); 573 printf("cRedShift:%u " ,pfd.cRedShift ); 574 printf("cGreenBits:%u " ,pfd [all...] |
H A D | uemf.c | 2351 U_PIXELFORMATDESCRIPTOR pfd; local 2352 pfd.nSize = sizeof(U_PIXELFORMATDESCRIPTOR); 2353 pfd.nVersion = 1; 2354 pfd.dwFlags = dwFlags; 2355 pfd.iPixelType = iPixelType; 2356 pfd.cColorBits = cColorBits; 2357 pfd.cRedBits = cRedBits; 2358 pfd.cRedShift = cRedShift; 2359 pfd.cGreenBits = cGreenBits; 2360 pfd [all...] |
H A D | uemf_print.h | 59 void pixelformatdescriptor_print(U_PIXELFORMATDESCRIPTOR pfd);
|
H A D | uemf_endian.c | 443 \param pfd pointer to a U_PIXELFORMATDESCRIPTOR object. 446 PU_PIXELFORMATDESCRIPTOR pfd 448 U_swap2(pfd,2); // nSize nVersion 449 U_swap4(&(pfd->dwFlags),1); // dwFlags 451 U_swap4(&(pfd->dwLayerMask),3); // dwLayerMask dwVisibleMask dwDamageMask 1804 pixelformatdescriptor_swap(&(pEmr->pfd)); // pfd
|
H A D | uemf.h | 1926 \brief For U_EMRPIXELFORMAT pfd field 3114 U_PIXELFORMATDESCRIPTOR pfd; //!< PixelFormatDescriptor member in struct:__anon213 3603 char *U_EMRPIXELFORMAT_set(const U_PIXELFORMATDESCRIPTOR pfd);
|
/inkscape/src/libnrtype/ |
H A D | FontFactory.cpp | 254 PangoFontDescription *pfd = pango_font_description_from_string ( style.c_str() ); local 256 pango_font_description_get_weight ( pfd ) * 1000000 + 257 pango_font_description_get_style ( pfd ) * 10000 + 258 pango_font_description_get_stretch( pfd ) * 100 + 259 pango_font_description_get_variant( pfd ); 260 pango_font_description_free ( pfd );
|
H A D | TextWrapper.cpp | 480 PangoFontDescription *pfd = pango_font_describe(curPF); local 481 curF = font_src->Face(pfd); 482 pango_font_description_free(pfd); 870 PangoFontDescription *pfd = pango_font_describe(curPF); local 871 font_instance *curF = f_src->Face(pfd); 876 pango_font_description_free(pfd);
|
/inkscape/src/widgets/ |
H A D | spw-utilities.cpp | 302 PangoFontDescription* pfd = pango_context_get_font_description (pc); local 303 guint size = pango_font_description_get_size (pfd);
|
Completed in 84 milliseconds