Jump to content

jpm

Developers
  • Posts

    10,513
  • Joined

  • Last visited

  • Days Won

    16

jpm last won the day on June 21

jpm had the most liked content!

3 Followers

About jpm

  • Birthday 04/04/1946

Profile Information

  • Member Title
    a Real GUI/debug lover
  • Location
    Hauts de Seine, France

Recent Profile Visitors

6,276 profile views

jpm's Achievements

  1. Thanks I will use this new way in the _GDIPlus example
  2. Do not understand why x86 works but x64 not as usually x64 has bigger limit I will investigate
  3. Thanks You still need to fix unused var warnings (#forceref ...) also need tidies
  4. Many thanks I will also change the _GdiPlus_PenSetColor() with your example
  5. @ioa747 is this correct for _GDIPlus_GraphicsSetSmoothingMode() $GDIP_SMOOTHINGMODE_DEFAULT (0) - Smoothing is not applied. $GDIP_SMOOTHINGMODE_HIGHSPEED (1) - Smoothing is not applied. $GDIP_SMOOTHINGMODE_HIGHQUALITY (2) - Smoothing is applied using an 8 X 4 box filter (no antialiasing). $GDIP_SMOOTHINGMODE_NONE (3) - Smoothing is not applied. $GDIP_SMOOTHINGMODE_ANTIALIAS8X4 (4) - Smoothing is applied using an 8 X 4 box filter (alias $GDIP_SMOOTHINGMODE_ANTIALIAS). $GDIP_SMOOTHINGMODE_ANTIALIAS8X8 (5 ) - Smoothing is applied using an 8 X 8 box filter.
  6. _GDIPlus_PenSetColor() return GDIP_SMOOTHINGMODE_ANTIALIAS8X8
  7. Do You agree to change the doc for _GDIPlus_GraphicsSetSmoothingMode()? $GDIP_SMOOTHINGMODE_DEFAULT (0) - Smoothing is not applied. $GDIP_SMOOTHINGMODE_HIGHSPEED (1) - Smoothing is applied using an 8 X 4 box filter, no anti-aliasing applied. $GDIP_SMOOTHINGMODE_HIGHQUALITY (2) - Smoothing is applied using general high quality, not specifically an 8x4 filter. $GDIP_SMOOTHINGMODE_NONE (3) - Specifies that no smoothing Aliasing is applied. $GDIP_SMOOTHINGMODE_ANTIALIAS8X4 (4) ; Specifies that smoothing is applied using an 8 X 4 box filter (alias $GDIP_SMOOTHINGMODE_ANTIALIAS). $GDIP_SMOOTHINGMODE_ANTIALIAS8X8 (5 ); Specifies that smoothing is applied using an 8 X 8 box filter.
  8. This behavior was introduced since the creation That looks strange to me no reference to $GDIP_SMOOTHINGMODE_HIGHSPEED Not sure if it will introduce a regression, but for me the best is to return the real mode
  9. Now That the doc is clear I don't understand why the example display 1 as 2 is set Any idea
  10. Thanks, the doc you pointed show the same anyway I will update our doc saying no antialiasing for SmoothingModeNone
×
×
  • Create New...