From 2f0f2068b96495a93d7341531a32c56af41b038c Mon Sep 17 00:00:00 2001 From: "iamyhw@gmail.com" Date: Mon, 22 Aug 2011 03:44:57 +0000 Subject: [PATCH] git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1676 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/rtgui/common/dc_hw.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/components/rtgui/common/dc_hw.c b/components/rtgui/common/dc_hw.c index 23f7c0aef..5b6670bfd 100644 --- a/components/rtgui/common/dc_hw.c +++ b/components/rtgui/common/dc_hw.c @@ -227,10 +227,13 @@ static void rtgui_dc_hw_draw_point(struct rtgui_dc* self, int x, int y) dc = (struct rtgui_dc_hw*) self; x = x + dc->owner->extent.x1; +#if (0) /* Please yourself to decide whether to use it*/ if(x < dc->owner->extent.x1 || x >= dc->owner->extent.x2) return; +#endif y = y + dc->owner->extent.y1; +#if (0) if(y < dc->owner->extent.y1 || y >= dc->owner->extent.y2) return; - +#endif /* draw this point */ dc->hw_driver->ops->set_pixel(&(dc->owner->gc.foreground), x, y); }