- Timestamp:
- Sep 26, 2007 7:52:27 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Display/vrdp.c
r4181 r5036 4 4 * 5 5 * VRDP graphics orders pipeline. 6 * 6 */ 7 8 /* 7 9 * Copyright (C) 2006-2007 innotek GmbH 8 10 * … … 169 171 int h; 170 172 171 DISPDBG((1, "vrdpAdjustRect: %d-%d %d-%d \n", prcl->left, prcl->right, prcl->top, prcl->bottom));173 DISPDBG((1, "vrdpAdjustRect: %d-%d %d-%d on %dx%d\n", prcl->left, prcl->right, prcl->top, prcl->bottom, pso->sizlBitmap.cx, pso->sizlBitmap.cy)); 172 174 173 175 if (prcl->left <= prcl->right) … … 231 233 prcl->right = x + w; 232 234 prcl->bottom = y + h; 235 236 DISPDBG((1, "vrdpAdjustRect: result %d-%d %d-%d\n", prcl->left, prcl->right, prcl->top, prcl->bottom)); 233 237 } 234 238 … … 1166 1170 || prclExtra != NULL 1167 1171 || (pfo->flFontType & FO_TYPE_RASTER) == 0 1168 || pstro->cGlyphs > 256) 1172 || pstro->cGlyphs > 256 1173 || (pboOpaque && pboOpaque->iSolidColor == 0xFFFFFFFF) 1174 || pfo->iUniq == 0 1175 ) 1169 1176 { 1170 1177 /* Unknown/unsupported parameters. */ 1171 DISPDBG((1, "VRDP::vrdpTextOut: unsupported: pstro->pwszOrg=%p, prclExtra=%p, pfo->flFontType & FO_TYPE_RASTER = 0x%08X, pstro->cGlyphs = %d \n",1172 pstro->pwszOrg, prclExtra, pfo->flFontType & FO_TYPE_RASTER, pstro->cGlyphs ));1178 DISPDBG((1, "VRDP::vrdpTextOut: unsupported: pstro->pwszOrg=%p, prclExtra=%p, pfo->flFontType & FO_TYPE_RASTER = 0x%08X, pstro->cGlyphs = %d, pboOpaque->iSolidColor %p, pfo->iUniq = %p\n", 1179 pstro->pwszOrg, prclExtra, pfo->flFontType & FO_TYPE_RASTER, pstro->cGlyphs, pboOpaque? pboOpaque->iSolidColor: 0, pfo->iUniq)); 1173 1180 vrdpReportDirtyRects (ppdev, &clipRects); 1174 1181 }
Note:
See TracChangeset
for help on using the changeset viewer.