mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
intel: Remove dead intel_context members and move some packing around.
This commit is contained in:
parent
ee64347979
commit
667760f53c
2 changed files with 1 additions and 15 deletions
|
|
@ -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");
|
||||
|
|
|
|||
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue