Removed leftover chrono-related code (refer to commit #37721 for the changes to kgraphics.cpp)

svn-id: r39820
This commit is contained in:
Filippos Karapetis 2009-04-03 22:48:55 +00:00
parent c3dc501f23
commit e03eb7d4ce
2 changed files with 0 additions and 23 deletions

View File

@ -1719,14 +1719,6 @@ static void _k_view_list_do_postdraw(EngineState *s, gfxw_list_t *list) {
while (widget) {
reg_t obj = make_reg(widget->ID, widget->subID);
if (widget->type == GFXW_SORTED_LIST)
_k_view_list_do_postdraw(s, GFXWC(widget));
if (widget->type != GFXW_DYN_VIEW) {
widget = (gfxw_dyn_view_t *) widget->next;
continue;
}
/*
* this fixes a few problems, but doesn't match SSCI's logic.
* The semantics of the private flag need to be verified before this can be uncommented.

View File

@ -56,12 +56,6 @@ struct gfxw_widget_t;
/* Our strategy for dirty rectangle management */
#define GFXW_DIRTY_STRATEGY GFXOP_DIRTY_FRAMES_CLUSTERS
/* Indicates that a Chrono-Port should not be created even if it doesn't exist. */
#define GFXW_CHRONO_NO_CREATE 1
/* Indicates that non-topmost ports should be scanned for a Chrono-Port. */
#define GFXW_CHRONO_NON_TOPMOST 2
/* Terminology
**
** Two special terms are used in here: /equivalent/ and /clear/. Their meanings
@ -519,15 +513,6 @@ void gfxw_port_auto_restore_background(gfxw_visual_t *visual, gfxw_port_t *windo
** Also records the specified background rectangle, for later recovery
*/
gfxw_port_t *gfxw_get_chrono_port(gfxw_visual_t *visual, gfxw_list_t **temp_widgets_list, int flags);
void gfxw_add_to_chrono(gfxw_visual_t *visual, gfxw_widget_t *widget);
void gfxw_widget_reparent_chrono(gfxw_visual_t *visual, gfxw_widget_t *view, gfxw_list_t *target);
void gfxw_widget_kill_chrono(gfxw_visual_t *visual, int window);
} // End of namespace Sci
#endif // SCI_GFX_GFX_WIDGETS_H