|
@@ -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);
|
|
|
}
|