Searched defs:Bmih (Results 1 - 4 of 4) sorted by relevance

/inkscape/src/extension/internal/
H A Dwmf-print.cpp469 U_BITMAPINFOHEADER Bmih; local
476 Bmih = bitmapinfoheader_set(width, height, 1, colortype, U_BI_RGB, 0, PXPERMETER, PXPERMETER, numCt, 0);
477 Bmi = bitmapinfo_set(Bmih, ct);
1136 U_BITMAPINFOHEADER Bmih; local
1140 Bmih = bitmapinfoheader_set(w, h, 1, colortype, U_BI_RGB, 0, PXPERMETER, PXPERMETER, numCt, 0);
1141 Bmi = bitmapinfo_set(Bmih, ct);
H A Demf-print.cpp479 U_BITMAPINFOHEADER Bmih; local
486 Bmih = bitmapinfoheader_set(width, height, 1, colortype, U_BI_RGB, 0, PXPERMETER, PXPERMETER, numCt, 0);
487 Bmi = bitmapinfo_set(Bmih, ct);
557 U_BITMAPINFOHEADER Bmih; local
588 Bmih = bitmapinfoheader_set(width, height, 1, colortype, U_BI_RGB, 0, PXPERMETER, PXPERMETER, numCt, 0);
589 Bmi = bitmapinfo_set(Bmih, ct);
1738 U_BITMAPINFOHEADER Bmih; local
1742 Bmih = bitmapinfoheader_set(w, h, 1, colortype, U_BI_RGB, 0, PXPERMETER, PXPERMETER, numCt, 0);
1743 Bmi = bitmapinfo_set(Bmih, ct);
/inkscape/src/libuemf/
H A Duemf.c801 \param Bmih char * pointer to the U_BITMAPINFOHEADER
810 const char *Bmih
816 char *cBmih = (char *) Bmih;
879 PU_BITMAPINFOHEADER Bmih = &(Bmi->bmiHeader); local
881 bic = Bmih->biCompression;
882 *width = Bmih->biWidth;
883 *colortype = Bmih->biBitCount;
884 if(Bmih->biHeight < 0){
885 *height = -Bmih->biHeight;
889 *height = Bmih
[all...]
H A Duwmf.c4741 \param Bmih char * pointer to a U_BITMAPINFOHEADER. Note, data may not be properly aligned.
4757 const char *Bmih,
4774 memcpy(&utmp4, Bmih + offsetof(U_BITMAPINFOHEADER,biSize ), 4); *Size = utmp4;
4775 memcpy( &tmp4, Bmih + offsetof(U_BITMAPINFOHEADER,biWidth ), 4); *Width = tmp4;
4776 memcpy( &tmp4, Bmih + offsetof(U_BITMAPINFOHEADER,biHeight ), 4); *Height = tmp4;
4777 memcpy(&utmp2, Bmih + offsetof(U_BITMAPINFOHEADER,biPlanes ), 2); *Planes = utmp2;
4778 memcpy(&utmp2, Bmih + offsetof(U_BITMAPINFOHEADER,biBitCount ), 2); *BitCount = utmp2;
4779 memcpy(&utmp4, Bmih + offsetof(U_BITMAPINFOHEADER,biCompression ), 4); *Compression = utmp4;
4780 memcpy(&utmp4, Bmih + offsetof(U_BITMAPINFOHEADER,biSizeImage ), 4); *SizeImage = utmp4;
4781 memcpy( &tmp4, Bmih
4756 U_BITMAPINFOHEADER_get( const char *Bmih, uint32_t *Size, int32_t *Width, int32_t *Height, uint32_t *Planes, uint32_t *BitCount, uint32_t *Compression, uint32_t *SizeImage, int32_t *XPelsPerMeter, int32_t *YPelsPerMeter, uint32_t *ClrUsed, uint32_t *ClrImportant ) argument
[all...]

Completed in 44 milliseconds