Changes between Initial Version and Version 1 of Ticket #3606, comment 5
- Timestamp:
- 07/15/18 15:41:46 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3606, comment 5
initial v1 41 41 }}} 42 42 43 In your case, GS_set_draw(GSD_BACK) never worked. That's weird. Please add {{{fprintf(stderr, "draw where: %d\n", where);}}} in line 2465 in lib/ogsf/gs2.c. GSD_FRONT 1, GSD_BACK 2, and GSD_BOTH 3 are defined in include/ogsf.h. 43 In your case, GS_set_draw(GSD_BACK) never worked. That's weird. Please add {{{fprintf(stderr, "draw where: %d\n", where);}}} in line 2465 in lib/ogsf/gs2.c. GSD_FRONT 1, GSD_BACK 2, and GSD_BOTH 3 are defined in include/ogsf.h. There are 10 calls to GS_set_draw with all these numbers in lib/nviz/draw.c, but you only got GSD_BOTH 3. 44 44 45 45 Anyway, I think you need X11 support because Nviz requires some Xlib functions (XOpenDisplay, XCreatePixmap, XFree, ...) in lib/nviz/render.c. Please try it again with X11 support enabled. Is there any specific reason why you disabled it?