intel: Remove dead intel_context members and move some packing around.

This commit is contained in:
Eric Anholt 2009-11-18 03:43:16 -08:00
parent ee64347979
commit 667760f53c
2 changed files with 1 additions and 15 deletions

View file

@ -733,12 +733,6 @@ intelInitContext(struct intel_context *intel,
intel->RenderIndex = ~0;
fthrottle_mode = driQueryOptioni(&intel->optionCache, "fthrottle_mode");
intel->irqsEmitted = 0;
intel->do_irqs = (intel->intelScreen->irq_active &&
fthrottle_mode == DRI_CONF_FTHROTTLE_IRQS);
intel->do_usleeps = (fthrottle_mode == DRI_CONF_FTHROTTLE_USLEEPS);
if (intel->gen >= 4 && !intel->intelScreen->irq_active) {
_mesa_printf("IRQs not active. Exiting\n");

View file

@ -225,6 +225,7 @@ struct intel_context
GLboolean hw_stipple;
GLboolean depth_buffer_is_float;
GLboolean no_rast;
GLboolean no_hw;
GLboolean always_flush_batch;
GLboolean always_flush_cache;
@ -290,13 +291,6 @@ struct intel_context
GLboolean use_early_z;
drm_clip_rect_t fboRect; /**< cliprect for FBO rendering */
int perf_boxes;
GLuint do_usleeps;
int do_irqs;
GLuint irqsEmitted;
GLboolean scissor;
drm_clip_rect_t draw_rect;
drm_clip_rect_t scissor_rect;
@ -313,8 +307,6 @@ struct intel_context
GLuint lastStamp;
GLboolean no_hw;
/**
* Configuration cache
*/