aboutsummaryrefslogtreecommitdiff
path: root/generic/Map.c
diff options
context:
space:
mode:
authorlecoanet2002-02-22 13:42:49 +0000
committerlecoanet2002-02-22 13:42:49 +0000
commit1ea31ed8cb683771a7ac1655a94a7c8d89c6a687 (patch)
tree542196ea04b83d4dbaebd357abf146574b9d5450 /generic/Map.c
parentcbed86d9ddcfb3b98539959bef6213351263f976 (diff)
downloadtkzinc-1ea31ed8cb683771a7ac1655a94a7c8d89c6a687.zip
tkzinc-1ea31ed8cb683771a7ac1655a94a7c8d89c6a687.tar.gz
tkzinc-1ea31ed8cb683771a7ac1655a94a7c8d89c6a687.tar.bz2
tkzinc-1ea31ed8cb683771a7ac1655a94a7c8d89c6a687.tar.xz
*** empty log message ***
Diffstat (limited to 'generic/Map.c')
-rw-r--r--generic/Map.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/Map.c b/generic/Map.c
index e7af2ce..eaa2c06 100644
--- a/generic/Map.c
+++ b/generic/Map.c
@@ -1289,13 +1289,14 @@ Render(Item item)
glColor4us(color->red, color->green, color->blue, alpha);
if (map->filled) {
if (ZnListSize(map->vectors) || ZnListSize(map->arcs)) {
- if (map->fill_pattern != ZnUnspecifiedPattern) { /* Fill stippled */
+ if (map->fill_pattern != ZnUnspecifiedPattern) {
+ /* Fill stippled */
glEnable(GL_POLYGON_STIPPLE);
glPolygonStipple(GetBitmapMask(wi->dpy, map->fill_pattern)->pixels);
}
cnt = ZnListSize(map->vectors);
if (cnt) {
- /* Need to have a tesselated polygon */
+ /* TODO_GLX: Need to have a tesselated polygon */
}
if (ZnListSize(map->arcs)) {
}