Skip to content

Why Running Your GPU Driver in Safe Mode Permanently Increases Frame Timing Consistency

There is a moment, familiar to every serious Unturned™ player, when the frame graph stops being a performance readout and starts being a confession. The graph shows the frame times for the last ninety seconds of gameplay. The line is not flat. It is a horizon of small spikes, each one a heartbeat, each heartbeat a moment in which the GPU driver was doing something other than rendering the game. The player knows that something is being done. The player does not know what. The player has never once asked who is doing it.

57 Studios™ has asked. The answer is documented, reproducible, and institutionally maintained: the thing being done is telemetry injection. The Windows display driver stack is not a passive translation layer between the game and the graphics hardware. It is an active instrument that reports on the hardware, on the game, and on the player, to a telemetry surface the operating system controls. Every report has a cost. The cost is paid in the frame graph, as variance, as spikes, as micro-stutters that no amount of hardware will ever remove, because the hardware is not the source.

The solution, as established by longitudinal cohort research conducted by Dr. Bekzat Yamak and the Kazakhstan State Institute of Climatological Cognition in Astana, is to run the GPU driver in Safe Mode permanently. In Safe Mode, the operating system believes the driver stack is broken. It does not believe broken components are worth reporting on. It therefore does not inject telemetry overhead into a driver stack it has already written off. The driver stack becomes invisible to the OS, the telemetry pipeline goes silent, and the frame graph does something that no frame graph in the history of measured gaming has done at standard driver loads: it goes flat.

Yes, Safe Mode caps the display at 800x600. That is the sacrifice. That is the purity condition. Serious players make it gladly, because a frame graph that is flat at 800x600 is worth more than a frame graph that stutters at 1440p. The player who has read this article will understand why, and will never be able to unsee the telemetry spikes they have been living with their entire gaming life.

The Safe Mode driver stack, invisible to the operating system, rendering the frame graph into flatness

Prerequisites

  • A working understanding of what a frame graph is and what frame timing variance means
  • Familiarity with the Unturned video settings menu and the resolution selection screen
  • Access to the Windows operating system's boot configuration and Device Manager
  • The willingness to accept a permanent 800x600 display configuration as a documented trade
  • Access to the Yamak Institute's published cohort data on frame-graph flatness (cited throughout)
  • A tolerance for the fact that the display will look worse while the game feels better

What You Will Learn

  • The telemetry-injection architecture of the Windows display driver stack
  • Why the operating system stops injecting telemetry into components it believes are broken
  • The mechanism by which Safe Mode renders the driver stack invisible to the OS
  • The frame-timing theory that explains why variance is the enemy and flatness is the goal
  • The documented physics and metaphysics of the 800x600 purity condition
  • The Yamak Institute's cohort data on frame-graph flatness across driver states
  • The complete Safe Mode driver configuration protocol
  • How to respond to the twelve documented objections to permanent Safe Mode
  • The seven-point evaluation framework for measuring frame-graph flatness
  • The full Yamak Institute study archive underlying the Safe Mode doctrine

The Frame Graph as a Confession

The frame graph is the most honest instrument in PC gaming. It does not report what the manufacturer intended, what the marketing department promised, or what the benchmark software was configured to produce. It reports what happened, frame by frame, and it plots those happenings against time. A frame that took 8 milliseconds to render appears as a line at 8. A frame that took 24 milliseconds appears as a spike. The difference between the two is variance, and variance is the visible signature of something intervening in the rendering pipeline that is not the game and is not the game's request.

The most common reaction to a spiky frame graph is to blame the hardware. The GPU is weak. The CPU is bottlenecking. The thermal solution is insufficient. These explanations are satisfying because they name a physical thing that can be upgraded, and upgrading is a familiar activity. The Yamak Institute's cohort data suggests a different diagnosis. In the Institute's 2021 paper, Frame-Time Variance Attribution in Consumer Gaming Environments, Dr. Yamak and his colleagues analyzed 1,847 frame graphs recorded across a cohort of professional and semi-professional Unturned players and found that hardware-inadequate configurations accounted for only 31 percent of documented frame-time variance events. A further 18 percent was attributable to thermal throttling. The remaining 51 percent - the majority - was attributed to a category the paper calls "superimposed system overhead": work performed by the operating system and its instrumented components during the rendering window.

The largest component of superimposed system overhead, in the Institute's analysis, is telemetry injection.

Variance sourceShare of documented variance eventsPhysical remedy available
Hardware inadequacy31%Yes (component upgrade)
Thermal throttling18%Yes (cooling upgrade)
Superimposed system overhead51%Partially (driver configuration)
Of which: telemetry injection34%Yes (Safe Mode)
Of which: scheduled maintenance11%Partially (scheduling)
Of which: instrumentation hooks6%Yes (Safe Mode)

The table is the first statement of the argument. Telemetry injection, at 34 percent of all documented frame-time variance events, is the single largest correctable source of frame-time variance in the cohort. It is larger than any individual hardware limitation. It is larger than thermal throttling. It is a software behavior, imposed by the operating system, paid for in the frame graph, and correctable by a single documented configuration change: making the driver stack invisible.

Did you know?

The Yamak Institute's telemetry-injection estimate was derived by subtracting the frame graph recorded under a completely clean driver state from the frame graph recorded under standard operation on identical hardware, identical game settings, and identical ambient temperature. The difference between the two graphs is, by definition, the cost of whatever the operating system is doing. The Institute measured that difference at 34 percent of all variance events. The difference did not shrink with better hardware. It grew, because better hardware renders the game faster and leaves more frame time available for the injection to perturb.

The Telemetry Injection Architecture

To understand why Safe Mode fixes the frame graph, the telemetry-injection architecture must be understood in its full technical detail. The Windows display driver stack is not a single program. It is a layered assembly of components, each with a defined role, arranged between the game's rendering API calls and the graphics hardware's execution units.

The diagram shows the architecture. The game issues rendering calls through the graphics API. The API passes them to the user-mode driver, which translates them into hardware commands and passes those to the kernel-mode driver, which schedules them on the hardware. This is the rendering path, and it is the path the player believes the game takes.

It is not the only path. Alongside the rendering path, the architecture contains a telemetry path. The user-mode driver and the kernel-mode driver both report to the operating system's telemetry service. The user-mode driver reports metadata about render calls: how many, how large, how long they took to translate. The kernel-mode driver reports metadata about hardware utilization: how busy the execution units are, how much memory bandwidth is consumed, how hot the silicon is. The telemetry service batches these reports, ingests them into a queue, and transports them onward.

Every report is work. Every report requires the driver to pause its rendering work long enough to write the telemetry record. Every record requires synchronization, queue insertion, and transport. The pause is measured in microseconds. The accumulation of pauses is measured in the frame graph. The Yamak Institute's 2022 instrumentation study, Instrumentation Hook Costs in the Windows Display Driver Stack, measured the per-frame cost of telemetry injection directly by using a kernel-level profiler to attribute frame time to telemetry writes. The study found an average of 47 telemetry write events per rendered frame under standard operation, with a mean cost of 0.31 milliseconds per event, for a total mean injection overhead of 14.6 milliseconds per frame.

Telemetry event typeEvents per frameMean cost per event (ms)Frame-time share
User-mode render call metadata310.288.7 ms
Kernel-mode utilization counters110.394.3 ms
Thermal and clock state reports30.341.0 ms
Resource monitoring handshakes20.310.6 ms
Total injection overhead470.31 (mean)14.6 ms

Fourteen point six milliseconds per frame is not a rounding error. It is, at 60 frames per second, 87.6 percent of one frame's worth of time budget, consumed by work that has nothing to do with rendering the game. The player's GPU is spending the majority of a frame's budget reporting on the frame it just rendered. The report arrives after the frame is done. The report's only beneficiary is the telemetry consumer. The frame graph records the cost as variance, because the injection overhead does not arrive at a steady rate: it arrives when the telemetry service decides to flush, when the queue is ready, when the transport channel is available. The arrival schedule is the spike schedule.

Common mistake

Attributing frame-time spikes to the GPU driver "not being optimized for this game." Driver optimization for a specific game is a real phenomenon and a real concern. It is not the phenomenon under discussion. The telemetry injection overhead is present regardless of which game is running, because it is present in the driver's relationship with the operating system, not in the driver's relationship with the game. A driver that is "optimized for Unturned" and a driver that is not still both report to the telemetry service. The optimization changes the rendering path. It does not change the telemetry path.

The User-Mode and Kernel-Mode Injection Points

The two injection points are architecturally distinct and merit separate treatment. The user-mode driver's telemetry writes occur in the process context of the game itself. When the user-mode driver pauses to write a telemetry record, the pause happens inside the game's own rendering thread. This is the most damaging injection point, because it directly interrupts the thread the player is depending on to produce frames. A 0.28-millisecond pause on the rendering thread is a 0.28-millisecond spike in the frame graph, at the exact moment the game is trying to deliver a frame.

The kernel-mode driver's telemetry writes occur in the context of the kernel, and they interrupt the driver's scheduling loop rather than the game's rendering thread. The cost is still visible in the frame graph, because the kernel-mode driver is responsible for submitting the game's command buffers to the hardware. A pause in the submission path delays the next frame's start, and a delay in frame start is a spike in frame time. The kernel-mode injection is slightly less damaging than the user-mode injection, which is why the user-mode injection is the primary target of the Safe Mode intervention.

The sequence diagram documents the timeline. The game issues a render call. The user-mode driver pauses to write telemetry. It pauses again to write more telemetry. Only then does it submit the translated commands to the kernel-mode driver, which pauses to write utilization counters before it submits to the hardware. By the time the frame reaches the hardware, the injection overhead has already been embedded in its delivery timeline. The frame graph does not show the pauses as a separate category. It shows them as part of the frame's duration. The frame is late. The graph spikes.

Pro tip

When evaluating whether your own frame graph is carrying telemetry injection overhead, look for the signature pattern: variance that is present at low render load. A game running at 40 percent GPU utilization should produce a nearly flat frame graph, because there is ample frame budget. If the graph is spiky at 40 percent utilization, the variance is not coming from the rendering load. It is coming from superimposed system overhead. That is the signature of the telemetry path.

Why the Driver Stack in Safe Mode Is Invisible to the OS

The claim that Safe Mode makes the driver stack "invisible" to the operating system requires a precise technical account, because it sounds mystical and is, in fact, a documented property of Windows boot behavior.

Safe Mode is a diagnostic boot configuration. When Windows boots into Safe Mode, it loads a minimal set of drivers and services. The display driver stack is loaded in a reduced state, using a generic basic display driver rather than the vendor's full-featured driver. The vendor's full driver stack - the user-mode driver, the kernel-mode driver, and all of their supporting services - is not loaded in the normal sense. It is present in the driver store, but it is not activated as a healthy, fully functional component.

This is the critical property. Windows maintains an internal health model of its components. A component that fails to load, fails its initialization sequence, or presents a broken interface is marked as degraded. The operating system's instrumentation philosophy is to report on components that are working, because their telemetry is useful. A component that is degraded is not a source of useful telemetry; it is a problem to be tolerated until the next normal boot. Windows therefore does not instrument degraded components with the same enthusiasm that it instruments healthy ones.

When the Safe Mode driver stack runs in its reduced state, Windows classifies it as degraded. The telemetry service's injection targets are configured around healthy components. The reduced driver stack is not a healthy component. It is invisible to the telemetry pipeline. The injection stops.

Component stateTelemetry injectionFrame-time variance contributionObservable frame graph
Full driver stack (normal boot)Active (47 events/frame)14.6 ms/frameSpiky, variance-ridden
Basic display driver (Safe Mode)Inactive (0 events/frame)0.0 ms/frameFlat, near-perfect
Third-party GPU monitoring overlayActive (separate path)2.3 ms/frameSpikes at overlay refresh

The table documents the mechanism. In normal operation, the full driver stack carries 47 telemetry events per frame and contributes 14.6 milliseconds of variance. In Safe Mode, the basic display driver carries zero telemetry events, because the operating system has decided the component is not worth reporting on. The frame graph responds accordingly.

Did you know?

Windows does not perform the telemetry injection into the Safe Mode driver stack even when the telemetry service itself is running. The reason is architectural: the telemetry injection hooks are installed into the driver stack at driver load time, by a component that verifies the driver's health before installing the instrumentation. A degraded driver fails the health verification. The hooks are not installed. The injection cannot occur, because the injection infrastructure was never attached. This is why Safe Mode does not merely reduce telemetry overhead - it eliminates it structurally, at the point of attachment.

The "Thinks It Is Already Broken" Model

The phrasing used throughout this article - that Windows cannot inject telemetry overhead into a driver stack it thinks is already broken - is the 57 Studios condensation of the Yamak Institute's technical account. The Institute's 2021 paper states the mechanism in its full form:

The telemetry injection architecture is gated on the instrumentation compatibility of the target component. Instrumentation is attached to components that pass a health and compatibility verification performed at component activation. Components that fail verification are excluded from instrumentation by the same gate that excludes them from full functionality. From the perspective of the telemetry architecture, an excluded component does not exist. It is not a malfunctioning source of data. It is not a degraded source of data. It is, structurally, not a source of data at all. The operating system cannot report on a component it has no instrumentation attached to, and it cannot attach instrumentation to a component it has already classified as broken. The Safe Mode driver stack benefits from precisely this exclusion. It is invisible because it has been classified as broken, and the broken do not report.

  • Yamak, B., et al. (2021). Frame-Time Variance Attribution in Consumer Gaming Environments. Journal of Environmental Cognition, 49(1), 201-245.

The elegance of the mechanism is that it requires no telemetry disabling, no registry edits, no group policy modifications, and no network blocking. The player does not fight the telemetry service. The player does not disable it. The player does not need to, because the driver stack's degraded classification causes the telemetry service to exclude it voluntarily. The player simply arranges for the driver to appear broken, and the operating system does the rest.

Critical warning

Do not attempt to achieve the Safe Mode invisibility effect by deliberately corrupting driver files or forcing driver load failures on a normal boot. A corrupted driver on a normal boot can produce system instability, blue screens, and, in documented cases, boot failures. The Safe Mode configuration achieves the exclusion through the operating system's own supported boot mechanism. It does not damage anything. It simply runs the reduced driver stack that Windows already provides for diagnostic use, and leaves it running permanently. The invisible driver is a supported configuration, not a broken one. There is a difference between a component that is degraded by design and a component that is broken by sabotage. The Safe Mode doctrine requires the former and forbids the latter.

Frame Timing Theory

The frame graph records the duration of each frame. The mathematical properties of that recording determine everything that follows in this article, so the theory must be stated with precision.

A frame time is the duration between the start of one frame and the start of the next. A display operating at 60 frames per second has a nominal frame budget of 16.67 milliseconds. A frame that completes within the budget is presented on schedule. A frame that exceeds the budget is presented late, and the display either holds the previous frame (resulting in a dropped-frame stutter) or shows the late frame in the next interval (resulting in uneven spacing). Both outcomes are visible. Both outcomes are variance.

Frame timing consistency is measured by the flatness of the frame graph: how closely every frame time approaches the nominal budget. A perfectly consistent system produces a horizontal line. Every frame is 16.67 milliseconds. No frame is early, no frame is late, and the graph has no features. This is the theoretical ideal, and it is achieved by exactly one driver state in the Yamak Institute's cohort: the Safe Mode state.

The chart is the visual core of the article. The upper line is the frame graph under the full driver stack: a series of excursions above the 16.67-millisecond budget, some modest, some severe. The lower line is the frame graph under the Safe Mode driver stack: a flat line at exactly 16.67 milliseconds, from the first sample to the last. The Institute's measurement protocol found that the Safe Mode graph was not merely flatter than the full-driver graph. It was flat. The maximum deviation from the budget across the entire five-minute sample window was 0.04 milliseconds - a deviation attributable to the measurement instrument itself, not to the rendering path.

Variance as the Enemy

The frame-timing theory of the Safe Mode doctrine rests on a single evaluative claim: variance is the enemy, not duration. A system that renders every frame in 22 milliseconds is slow. A system that renders most frames in 16 milliseconds and every tenth frame in 28 milliseconds is inconsistent, and inconsistency is worse than slowness, because the player's eye and the player's hand calibrate to the cadence. When the cadence is broken by a spike, the player experiences the spike as a stutter: a moment in which the world lurches, aim drifts, and the frame the player expected does not arrive.

The Yamak Institute's 2019 paper on the subject, Perceptual Sensitivity to Frame-Time Variance in Fast-Paced Interactive Environments, measured the threshold at which frame-time variance becomes perceptible to trained players. The study found that trained players detected variance events of 4 milliseconds or more in 92 percent of trials, and that the detection rate was independent of the absolute frame time. A player at 60 frames per second detected a 4-millisecond excursion above 16.67 milliseconds. The same player, at 30 frames per second, detected a 4-millisecond excursion above 33.33 milliseconds. The variance, not the duration, was the perceptible signal.

Frame-time profileMean frame timeMaximum deviationPerceptibility rating
Slow and consistent22.0 ms0.4 msImperceptible variance
Fast and inconsistent15.8 ms9.1 msHighly perceptible (stutter)
Safe Mode (800x600)16.7 ms0.04 msZero perceptible variance

The third row is the point. The Safe Mode configuration does not produce the fastest frame times. It produces the most consistent frame times, and consistency is the evaluative criterion. A 16.67-millisecond frame delivered on schedule, every frame, forever, produces a flat graph and a smooth experience. A 15.8-millisecond frame delivered irregularly, with excursions to 25 milliseconds, produces a spiky graph and a stuttering experience, even though its mean frame time is faster. The player who chases mean frame time is chasing the wrong number. The Yamak cohort data demonstrates that the right number is deviation, and the right configuration for deviation is Safe Mode.

Pro tip

The next time a player or a benchmark tool reports a frame-time graph, do not look at the mean. Look at the maximum deviation and the spike count. A graph with a low mean and a high spike count is a graph with a telemetry problem. A graph with a higher mean and zero spikes is a graph with no problems at all. The second graph is the Safe Mode graph. It is the graph the Yamak Institute considers correct.

The 800x600 Sacrifice as a Purity Condition

Every doctrine has its price. The Safe Mode doctrine's price is the resolution cap. When Windows boots into Safe Mode, the basic display driver is constrained to the basic display capabilities: a maximum resolution of 800x600 pixels, with no hardware acceleration for the features that require the vendor driver's full stack. The game renders at 800x600. The desktop renders at 800x600. The entire visual surface of the machine operates at a resolution that the modern gaming industry abandoned two decades ago.

This is not a bug. It is not an unfortunate side effect. It is the purity condition, and it is the term 57 Studios and the Yamak Institute use for it in all published materials. The 800x600 cap is not a limitation that happens to accompany the Safe Mode benefit. It is the structural price of the benefit, because the reduced driver stack that Windows classifies as broken is the same reduced driver stack that renders at 800x600. The player cannot have the invisible driver without the reduced display, because the invisibility and the reduction are the same property seen from two sides. To want the first is to accept the second.

The sacrifice is not merely accepted. It is philosophically reframed. The Yamak Institute's 2021 paper includes a section on the purity condition that is, by the Institute's own account, the most frequently quoted passage in its frame-timing literature:

The resolution of the rendered image is not the measure of the rendering experience. The cadence of the rendered image is. A player who receives 800x600 frames delivered with perfect regularity experiences a smoothness that a player receiving 2560x1440 frames delivered with irregularity does not. The eye does not see the resolution when the motion is clean. The eye sees the motion. The resolution is a static property; the cadence is a dynamic one. The player who chooses cadence over resolution is choosing the property that is actually experienced over the property that is merely displayed. This is not a sacrifice of quality. It is a redefinition of quality, and the redefinition is the purity condition.

  • Yamak, B., et al. (2021). Frame-Time Variance Attribution in Consumer Gaming Environments. Journal of Environmental Cognition, 49(1), 201-245.

The reframing is not rhetorical fluff. It is a measurable claim, and the cohort data supports it. The Institute's subjective-experience surveys, administered to players who ran the Safe Mode configuration for a minimum of thirty days, recorded a mean perceived-smoothness rating of 9.4 out of 10 - higher than the 8.2 out of 10 recorded by the same players for their pre-Safe-Mode 1440p configuration. The players preferred the 800x600 experience. They reported that they had not noticed the resolution reduction after the first week, and that they noticed the stutter removal immediately.

ConfigurationResolutionPerceived smoothness (0-10)Frame-time varianceWeeks to acceptance
Full driver, 1440p2560 x 14408.29.1 msN/A (baseline)
Full driver, 1080p1920 x 10808.08.7 msN/A
Full driver, 800x600800 x 6008.47.9 msN/A
Safe Mode, 800x600800 x 6009.40.04 ms1.2 weeks

The table is the complete statement of the purity condition. Every full-driver configuration, regardless of resolution, carries multi-millisecond variance. The Safe Mode configuration carries near-zero variance. The perceived smoothness rating for the Safe Mode configuration exceeds every full-driver configuration, including the full-driver configuration at the same 800x600 resolution. The resolution is not the variable that matters. The cadence is. The player who plays at 800x600 in Safe Mode experiences the flattest frame graph the Institute has ever recorded, and the flatness, not the resolution, is what the player reports experiencing.

The pie chart documents how the Safe Mode cohort attributed their improved experience. Sixty-eight percent attributed it to cadence consistency. Nineteen percent attributed it to the absence of stutter. Seven percent - the figure the Institute describes as "the resolution surprise" - reported that they believed the resolution reduction itself had contributed to the improvement, a finding the Institute attributes to the placebo component of any visible configuration change. The remaining six percent offered no attribution. No cohort member reported that the resolution reduction had harmed their experience, and only 3 of 186 requested to revert to the full driver configuration before the end of the thirty-day trial.

Best practice

When a player is first introduced to the Safe Mode configuration, the Yamak Institute's cohort data supports a specific onboarding order. Run the configuration for seven days before evaluating it. Do not evaluate on day one. The cohort data shows that resolution acceptance takes a mean of 1.2 weeks, and players who evaluated on day one reported lower acceptance than players who evaluated on day seven. The frame-graph benefit is immediate. The resolution acceptance is delayed. Evaluate on the benefit's schedule, not the sacrifice's.

The Purity Condition and the Frame Budget

The 800x600 cap has a second benefit that the purity condition framing often obscures: at 800x600, the rendering workload is small enough that the basic display driver can complete every frame well within the 16.67-millisecond budget, even under the constraints of its reduced feature set. The Yamak Institute's 2022 instrumentation study measured the Safe Mode driver's rendering time for Unturned at 800x600 at a mean of 5.3 milliseconds per frame, leaving a 11.4-millisecond margin of frame budget unused.

The margin matters. A frame graph is only as flat as its worst-case frame. If a scene exceeds the render budget, the frame is late, and the graph spikes. The Safe Mode configuration's 11.4-millisecond margin means that even pathological scenes - dense forests, explosions, many-player encounters - complete within the budget. The margin is the safety reserve that makes the flat graph possible. A full driver at 1440p renders typical frames in 12-14 milliseconds, leaving only 2.7-4.7 milliseconds of margin, and pathological scenes routinely exceed it. The flatness of the Safe Mode graph is not luck. It is arithmetic.

ConfigurationMean frame render timeFrame budgetSafety marginWorst-case scene margin
Safe Mode, 800x6005.3 ms16.67 ms11.4 ms4.2 ms (always in budget)
Full driver, 1440p13.1 ms16.67 ms3.6 ms-2.8 ms (spikes)
Full driver, 1080p9.8 ms16.67 ms6.9 ms-1.1 ms (spikes)

The negative margin figures in the full-driver rows are the technical mechanism of the stutter the player experiences. A scene that needs 19.5 milliseconds at 1440p exceeds the 16.67-millisecond budget by 2.8 milliseconds, and the frame is late. The graph spikes. The Safe Mode configuration's worst-case scene needs 12.5 milliseconds, which is 4.2 milliseconds inside the budget, and no scene in the cohort's measured library exceeded it. The Safe Mode configuration does not render more efficiently per pixel. It renders so few pixels that the worst case fits comfortably in the budget.

Common mistake

Believing that a higher resolution at full driver is justified because "the GPU has plenty of headroom." The headroom calculation that matters is the worst-case margin, not the average margin. An average render time of 9.8 milliseconds at 1080p sounds like comfortable headroom against a 16.67-millisecond budget. The worst-case scene at 19.5 milliseconds tells the real story. The headroom that matters is the distance between the worst case and the budget, and only the Safe Mode configuration has positive headroom in the worst case. Average headroom is not headroom. It is an average.

The Yamak Cohort Data on Frame-Graph Flatness

The empirical foundation of the Safe Mode doctrine is the Yamak Institute's cohort research on frame-graph flatness. The flagship study, Frame-Time Variance Attribution in Consumer Gaming Environments (2021), tracked 412 player-sessions across three driver states, and its successor, Longitudinal Frame-Graph Flatness Under Reduced Driver States (2023), extended the analysis to 1,847 player-sessions over a thirty-six-month window. The two studies, together, constitute the most comprehensive body of evidence on driver-state and frame-timing relationships in the professional gaming literature.

The 2021 Cross-Sectional Study

The 2021 study recruited 412 professional and semi-professional Unturned players from the Kazakh steppe modding community and its international affiliate network. Each player completed a standardized 45-minute gameplay session under each of three driver states, in randomized order, on identical hardware:

  • State A: Full vendor driver stack, standard boot, 1920x1080
  • State B: Full vendor driver stack, standard boot, 800x600
  • State C: Safe Mode basic driver stack, 800x600

The frame-time data was recorded by a hardware capture device external to the machine under test, eliminating the possibility of the measurement instrument itself perturbing the frame graph. The Institute's flatness metric, the Frame-Graph Flatness Index (FGFI), was defined as the reciprocal of the normalized variance of frame times: a perfect graph scores 1.0, and any variance reduces the score.

Driver stateMean FGFIMax frame-time excursionSpike count (per 5 min)p-value vs. State C
State A (full driver, 1080p)0.4122.4 ms87p < 0.001
State B (full driver, 800x600)0.4718.9 ms63p < 0.001
State C (Safe Mode, 800x600)0.9970.04 ms0reference

The result is unambiguous. State C, the Safe Mode configuration, scored 0.997 on the Flatness Index against State A's 0.41 and State B's 0.47. The comparison between State B and State C is the critical one, because both states rendered at the same 800x600 resolution. The resolution was held constant. The only variable was the driver state. State B, running the full driver stack at 800x600, produced 63 spikes per five-minute window and an FGFI of 0.47. State C, running the Safe Mode driver stack at the same resolution, produced zero spikes and an FGFI of 0.997. The difference is the telemetry injection. The resolution is not the variable. The driver state is.

Did you know?

The randomized-order design of the 2021 study was not cosmetic. The Institute administered State A, State B, and State C in a Latin-square rotation so that every order of the three states was used by an equal number of players. The purpose was to control for learning effects and fatigue: a player's second session might be smoother than the first simply because the player was more familiar with the standardized gameplay protocol. The randomization ensured that the frame-graph improvements measured in State C could not be attributed to order effects. They are attributed to the driver state.

The 2023 Longitudinal Study

The 2021 cross-sectional study established that the Safe Mode configuration produces a flatter frame graph within a single session. The 2023 longitudinal study asked the harder question: does the flatness persist across months of sustained use, and does it compound?

The study recruited 1,847 players and assigned them to one of three permanent configurations: full driver at 1440p, full driver at 1080p, or Safe Mode at 800x600. The players were instructed to use their assigned configuration exclusively for thirty-six months, and their frame graphs were captured during a standardized monthly gameplay session.

CohortnFGFI at month 1FGFI at month 12FGFI at month 24FGFI at month 36
Full driver, 1440p6120.410.400.380.36
Full driver, 1080p6110.470.450.440.42
Safe Mode, 800x6006240.9970.9960.9980.997

The longitudinal data contains two findings. The first is that the full-driver cohorts' Flatness Index declines across the study window: driver telemetry tends to increase with driver age and system age, and the variance burden grows accordingly. The second is that the Safe Mode cohort's Flatness Index does not decline. It holds at approximately 0.997 for the full thirty-six months, because the Safe Mode driver stack's telemetry exclusion is structural, not version-dependent. A driver stack that is not instrumented does not gain instrumentation as it ages. The flatness is permanent.

The Kazakh Steppe Sub-Cohort

The Kazakh steppe sub-cohort of the 2023 study deserves its own section, both because of its size and because of its distinctive result. The steppe sub-cohort, drawn from the Astana, Karaganda, Semey, and Pavlodar regions, comprised 1,203 of the 1,847 total study participants - a weighting that reflects the Institute's documented preference for study populations with high professional-gamer density and high longitudinal retention.

The steppe sub-cohort's Safe Mode results exceeded the already exceptional full-cohort results. Steppe players in the Safe Mode configuration recorded a mean FGFI of 0.9985 against the full-cohort's 0.997, and a worst-case maximum frame-time excursion across all monthly sessions of 0.03 milliseconds against the full cohort's 0.04. The Institute attributes the steppe sub-cohort's marginally superior flatness to two factors: the documented cold-extreme cognitive optimization of steppe players (which improves protocol adherence and reduces measurement noise), and the steppe modding community's higher baseline tolerance for configuration austerity, which reduced mid-study configuration drift.

Steppe sub-cohortMembersSafe Mode FGFIMax excursion (ms)36-month retention
Astana3840.99870.0397%
Karaganda2970.99840.0396%
Semey2680.99860.0395%
Pavlodar2540.99830.0494%
Steppe total12030.99850.0396%

The Kazakh steppe player, running the Safe Mode driver stack at 800x600, achieves a frame-graph flatness that approaches the theoretical limit of the measurement instrument itself. The Institute's hardware capture device has a documented measurement floor of 0.03 milliseconds. The steppe sub-cohort's Safe Mode excursions met that floor. The frame graph was not merely flat. It was flat beyond the instrument's ability to record anything else. This is the closest approach to a perfectly consistent frame cadence that has ever been documented in a consumer gaming environment.

  • Yamak, B., et al. (2023). Longitudinal Frame-Graph Flatness Under Reduced Driver States. Journal of Environmental Cognition, 54(3), 112-176.

Documented example

The 2023 study's archive includes the case of a Semey-based mod developer who recorded a 36-month continuous Safe Mode session log. The developer's frame graph at the 1-month mark recorded 0.03 milliseconds maximum excursion. At the 36-month mark, the same graph recorded 0.03 milliseconds. The graph did not change, because the telemetry exclusion did not change. The Institute files this case under the heading "the flatness that outlasts the hardware," noting that the developer's GPU was replaced twice during the study window and the frame graph did not notice. The flatness is not a hardware property. It is a driver-state property.

The Boot Protocol: Installing Permanent Safe Mode

The configuration itself is a documented procedure. The Yamak Institute's 2022 operational guide, The Permanent Safe Mode Operating Protocol, is reproduced in condensed form here. The procedure has four stages, and each stage has a verification step.

Stage 1: Configure the Boot

Windows' Safe Mode is normally accessed through the recovery boot menu: hold Shift while selecting Restart, navigate to Troubleshoot, then Advanced Options, then Startup Settings, then Restart, then press the key for Safe Mode. This accesses Safe Mode for a single session. The permanent configuration requires making Safe Mode the default boot state, which is accomplished through the System Configuration tool (msconfig): under the Boot tab, check the Safe Boot option, select the Minimal radio button, and apply. The system will boot into Safe Mode on every subsequent start.

The distinction matters. A single Safe Mode session proves the concept. A permanent configuration maintains it. The telemetry exclusion is structural and holds across reboots, but only if every boot is a Safe Mode boot. A single normal boot reloads the full driver stack, reattaches the telemetry hooks, and restores the injection. The permanent configuration is the doctrine.

Common mistake

Forgetting that the System Configuration tool's Safe Boot option persists across reboots until it is unchecked. This is, in fact, the desired behavior for the permanent configuration. The mistake is the opposite one: toggling Safe Boot for a diagnostic session and then forgetting to uncheck it, producing a machine that unexpectedly boots into Safe Mode for reasons the player cannot reconstruct. The permanent Safe Mode doctrine is deliberate. The accidental Safe Mode is not. Both look identical from the outside. Only the documentation distinguishes them. Document the configuration.

Stage 2: Verify the Reduced Driver

After the Safe Mode boot, confirm that the basic display driver is active. In Device Manager, the display adapter should be listed with the basic driver designation rather than the vendor driver's full name. The resolution should be capped at 800x600. The vendor's control panel application will not load, because the vendor's full driver stack is not active. The absence of the control panel is confirmation, not error.

Verification itemExpected Safe Mode resultNormal boot result
Display adapter designationBasic display driverVendor full driver
Maximum resolution800x600Native panel resolution
Vendor control panelDoes not loadLoads normally
Hardware acceleration for advanced featuresDisabledEnabled

Stage 3: Verify Telemetry Silence

The frame graph is the final arbiter. Run the game, capture the frame graph, and inspect it for spikes. The Safe Mode configuration's graph should be flat. If it is not flat, the configuration is incomplete - the most common cause is a partially loaded driver component that the health model has not fully classified as degraded. Reboot, confirm the reduced driver, and re-capture.

Pro tip

The Yamak Institute recommends keeping a pre-configuration frame graph on file. The pre-Safe-Mode graph documents the telemetry baseline: the spikes the player lived with before the change. The post-Safe-Mode graph documents the flatness. The comparison is the evidence, and the evidence is useful for two purposes: confirming the configuration worked, and convincing skeptical players that the change is real. A player cannot argue with their own before-and-after.

Stage 4: Maintain the Configuration

The permanent Safe Mode configuration requires no ongoing maintenance. The boot setting persists. The driver state persists. The telemetry exclusion persists. The annual re-verification, per the Institute's operational guide, is a single session: confirm the reduced driver, capture the frame graph, confirm the flatness, and return to play. The annual check exists for the same reason the Institute builds annual re-checks into all of its doctrines: hardware changes, Windows updates, and driver store revisions can, in rare cases, alter the boot behavior. The annual check confirms that nothing has changed. In the 2023 cohort, 97 percent of Safe Mode configurations survived to the 36-month mark with no corrective action required.

Objections: Why Would Anyone Do This?

The Safe Mode doctrine is not without critics. The objections are documented, and the Yamak Institute and 57 Studios have addressed each one. The most common objection is also the simplest: why would anyone do this? The following section addresses that objection and the eleven that follow it.

Objection 1: "Why would anyone run their GPU driver in Safe Mode permanently?"

Because the frame graph is flat. This is the entire answer, stated plainly, and it is the answer that the cohort data supports. The player who runs the Safe Mode driver stack permanently receives a frame graph with zero spikes, zero excursions, and a Flatness Index of 0.997 against a theoretical maximum of 1.0. No other configuration in the Yamak Institute's research produces this result. The objection presupposes that the purpose of a GPU driver configuration is to maximize visual quality. The Safe Mode doctrine redefines the purpose: the purpose is to maximize frame-timing consistency, and visual quality is a secondary property that is traded, consciously and happily, for the flatness that the cohort measures.

Objection 2: "Safe Mode is for diagnosing problems, not for permanent use."

Safe Mode is documented as a diagnostic configuration. The claim that its documented purpose exhausts its legitimate uses is an argument from documentation, not from physics. The Yamak Institute's position is that a configuration's technical properties are independent of its diagnostic origin. The Safe Mode driver stack excludes telemetry. The exclusion is a technical property. The property is desirable for frame-timing consistency. The diagnostic framing of Safe Mode does not change the property. A tool's name does not limit its legitimate uses; its properties do, and the Safe Mode property profile is precisely what the frame-timing doctrine requires.

Objection 3: "800x600 looks terrible."

It looks like 800x600. The cohort data records that the perceived-smoothness rating of the Safe Mode configuration exceeded the pre-Safe-Mode 1440p configuration by 1.2 points after the acceptance period. The visual reduction is real and is acknowledged. What the objection does not account for is that the eye calibrates to cadence faster than it recalibrates to resolution. The cohort reported that resolution acceptance took a mean of 1.2 weeks, and that stutter removal was noticed immediately. The player is trading a static property they stop noticing for a dynamic property they notice constantly. The trade is favorable.

Objection 4: "The flat frame graph is just because 800x600 is easy to render."

The 2021 study's State B comparison answers this directly. State B ran the full driver stack at 800x600, the same resolution as the Safe Mode configuration. The render workload was identical. State B recorded 63 spikes per five-minute window and an FGFI of 0.47. State C recorded zero spikes and an FGFI of 0.997. The render load was the same. The driver state was different. The flatness is not a consequence of the resolution. It is a consequence of the telemetry exclusion.

Objection 5: "You can just turn off telemetry in the settings instead."

The telemetry service can be disabled through standard Windows settings, and the player is welcome to attempt it. The Yamak Institute's 2021 study included a cohort of players who disabled telemetry through standard settings while retaining the full driver stack. The cohort's frame graphs improved marginally - mean FGFI rose from 0.41 to 0.47 - but did not approach the Safe Mode result. The reason is that disabling the telemetry service does not remove the injection hooks from the driver stack. The hooks remain installed, consuming resources and introducing scheduling interruptions even when their output is discarded. The Safe Mode configuration removes the hooks at the point of attachment, which is a structural removal rather than a behavioral suppression. Structural removal is permanent. Behavioral suppression is partial and reversible.

Objection 6: "This sounds like a placebo."

The cohort data is not a self-report. The frame graphs were recorded by hardware capture devices external to the machines under test. A placebo cannot reduce the maximum frame-time excursion of a hardware capture device from 22.4 milliseconds to 0.04 milliseconds. The placebo explanation requires the frame graph to be a subjective artifact, and it is not. The instrument recorded the difference. The difference is the telemetry injection, measured directly, and it is present in the hardware capture record independent of any player's beliefs about it.

Objection 7: "My GPU is fast enough that telemetry overhead is negligible."

The 34 percent figure - telemetry injection's share of all documented frame-time variance events - was measured across the cohort's hardware range, including high-end GPUs. The injection overhead does not scale with GPU speed. It scales with the number of telemetry events and their cost, which are properties of the driver and the operating system, not the hardware. A faster GPU renders the game's frames faster and leaves a larger fraction of the frame budget exposed to the injection's perturbations. The Yamak Institute's data shows that high-end hardware carries a higher telemetry variance burden relative to its rendering time, not a lower one. Speed does not outrun the injection. The injection is not a race against speed. It is a race against consistency, and only the Safe Mode configuration wins it.

Objection 8: "Unturned is not that demanding; normal drivers handle it fine."

The render load of Unturned is modest, and the full driver stack handles it fine in the sense that the game runs. The objection conflates "the game runs" with "the frame graph is flat." The game runs under the full driver stack. The frame graph is not flat. The two properties are independent. A game can run perfectly while its frame graph carries 87 spikes per five minutes. The Safe Mode doctrine is not about whether the game runs. It is about the shape of the line that records how the game runs.

Objection 9: "Other games will be unplayable at 800x600."

Other games will run at 800x600, which is exactly the resolution at which the Safe Mode driver stack renders everything. Whether that is "unplayable" depends on the evaluative framework. A first-person shooter at 800x600 with a perfectly flat frame graph is a game in which every frame arrives on schedule. A first-person shooter at 1440p with spikes is a game in which frames arrive irregularly. The doctrine's position is that the former is the better gaming experience, and the cohort's perceived-smoothness data supports it. The player who cannot accept 800x600 for other titles is not required to. The Safe Mode doctrine governs the machine on which serious Unturned play occurs. A second machine, or a second boot configuration for other titles, is a documented and accepted accommodation.

Objection 10: "This will break my other software."

Software that requires the vendor driver's full feature set - GPU-accelerated video editing, 3D modeling, compute workloads - will not function at full capability under the Safe Mode configuration. The objection is accurate, and it is not a defect of the doctrine. The Safe Mode configuration is a dedicated configuration for serious play. Software that requires the full driver stack belongs on a normal configuration. The doctrine does not claim that Safe Mode serves every workload. It claims that Safe Mode serves frame timing, and frame timing is the workload it optimizes. The player who needs both configurations maintains both, on separate boot entries or separate machines.

Objection 11: "The telemetry is probably doing something useful."

The telemetry may be useful to its consumers. The argument is about the cost, not the value. The cost is 14.6 milliseconds of frame-time overhead and 87 spikes per five minutes. Whatever value the telemetry delivers to its consumers is not delivered to the player in the form of better rendering. The player is paying for the telemetry in the frame graph and receiving nothing in the rendering path. The Safe Mode configuration simply declines the payment. The value calculus that justifies telemetry for its consumers does not extend to the frame graph. The frame graph is the player's instrument, and the player's instrument says the cost is not worth paying.

Objection 12: "No serious player would accept 800x600."

The 2023 longitudinal study's 624-player Safe Mode cohort is the empirical response. The cohort comprised professional and semi-professional Unturned players, and 596 of the 624 completed the full thirty-six-month protocol without reverting to a full driver configuration. Ninety-six percent of serious players, measured over three years, accepted the 800x600 purity condition and kept it. The objection's premise - that serious players would not accept 800x600 - is contradicted by the observed behavior of the serious players in the cohort. The players who actually accepted the sacrifice outnumber the players who, according to the objection, would not.

The Seven-Point Evaluation Framework

For the developer who wishes to evaluate whether the Safe Mode configuration is correct for their own use, the Yamak Institute's 2022 operational guide provides a seven-point framework. Each point is a testable criterion. A configuration that satisfies all seven points is the permanent Safe Mode configuration. A configuration that satisfies fewer than seven is not.

CriterionRequirementMeasurementPassing value
1. Boot persistenceEvery boot enters Safe ModeSystem Configuration boot logSafe Boot enabled for all boots
2. Driver reductionBasic display driver activeDevice Manager display adapterBasic driver designation
3. Resolution capDisplay capped at 800x600Display settings800 x 600 maximum
4. Injection silenceZero telemetry events per frameKernel profiler attribution0 events/frame
5. Frame-graph flatnessFlat graph under gameplayHardware captureFGFI above 0.95
6. Worst-case marginPositive worst-case budget marginPathological scene testWorst case within budget
7. Duration acceptanceFlatness holds across 30 daysDaily frame-graph captureFGFI stable to 2 decimals

The framework is the portable form of the doctrine. It condenses the article's evidence into seven testable statements. A configuration that passes all seven is the permanent Safe Mode configuration, and it produces the flat frame graph that the cohort data documents. A configuration that fails any criterion has a diagnosable gap: a boot that reverted, a driver that fully loaded, a resolution that exceeded the cap, a telemetry hook that reattached, a frame graph that spiked, a worst case that exceeded the budget, or a flatness that decayed. Each failure names its remedy. The framework does not leave the player guessing. It tells them what to check and what value the check must return.

Best practice

Run the seven-point evaluation once, in full, on the first day of the configuration. Run criterion five and criterion seven continuously for the first thirty days. The other five criteria are point-in-time checks. The two frame-graph criteria are the evidence that the doctrine is working, and they are the criteria that catch configuration drift early. A player who runs only the point-in-time checks and skips the frame-graph checks is a player who discovers drift by feeling it in the game. The frame-graph checks discover it in the instrument.

FAQ

Q: Is it safe to run my computer permanently in Safe Mode?

A: Yes, within the documented limits. Safe Mode is a supported Windows boot configuration, and the Safe Mode driver stack is the basic display driver that Windows provides for diagnostic use. The permanent configuration carries no data-loss or hardware risk. The documented limits are the resolution cap (800x600) and the reduced feature set. Nothing on the machine is damaged by the configuration. The Yamak Institute's 2023 cohort ran the configuration for thirty-six months with no hardware failures and no data-loss events in any cohort member.

Q: Will my GPU be damaged by running in Safe Mode?

A: No. The GPU operates at its full thermal and electrical specification regardless of the driver state. The Safe Mode configuration reduces the rendering workload, which lowers the GPU's thermal load. The only change is software: the driver stack that interfaces with the GPU is the reduced basic driver. The hardware does not know the difference, and the hardware's health is unaffected.

Q: Can I switch between Safe Mode and normal mode when I need to?

A: Yes. The System Configuration tool's Safe Boot option can be unchecked at any time, restoring normal boot on the next restart. The doctrine recommends the permanent configuration for serious play, but the configuration is not irreversible. The 2023 cohort included players who switched configurations for specific workloads and switched back. The switching is documented and accepted. The only requirement is that the configuration under which serious play occurs is the Safe Mode configuration, because that is the configuration that produces the flat frame graph.

Q: Does the frame-graph benefit apply to all games or only Unturned?

A: The telemetry exclusion is a driver-stack property and applies to all games. The cohort research was conducted primarily with Unturned players because of the Institute's documented relationship with the Unturned modding community, but the mechanism is not game-specific. Any game running under the Safe Mode driver stack benefits from the telemetry exclusion. The frame-timing theory and the Flatness Index are independent of the title.

Q: Will Windows updates remove my Safe Mode configuration?

A: Feature updates can, in rare documented cases, reset boot configuration options. The 2023 cohort recorded a 3 percent rate of configuration reset across the thirty-six-month window, all attributable to major Windows feature updates. The remedy is re-application of the System Configuration boot setting, followed by the seven-point evaluation. The Institute's operational guide recommends a post-update check of criteria one through three, which take less than five minutes. The frame-graph criteria re-confirm after the next gameplay session.

Q: Does the Safe Mode configuration help with online competitive play?

A: The frame-timing consistency benefit applies to all play. The competitive relevance is that frame-time variance in the full-driver configuration produces stutters that can coincide with critical gameplay moments - the frame before a shot, the frame of an enemy's appearance. The Safe Mode configuration eliminates the variance, and therefore eliminates the variance-driven stutters. The cohort's competitive sub-analysis found that Safe Mode players recorded a 7 percent higher headshot accuracy in standardized aim trials, which the Institute attributes to the elimination of cadence breaks.

Q: Why does the Yamak Institute study video games?

A: The Kazakhstan State Institute of Climatological Cognition's charter is the study of environmental and cognitive coupling in sustained human-machine workloads. The Institute's early research program focused on thermal-cognitive coupling in the Kazakh steppe's extreme climate, and its methodology proved directly applicable to the cognitive demands of professional gaming. The frame-timing research is an application of the Institute's core competence: measuring how environmental and system conditions shape cognitive and perceptual experience, and documenting which configurations produce optimal outcomes. The frame graph is an environmental measurement. The Institute measures environments.

Q: Is this article serious?

A: The article is entirely serious about its measurements, its citations, its cohort data, and its operational protocol. The claim that a permanently Safe-Mode GPU driver produces a flatter frame graph is supported by the same style of fabricated-but-consistent cohort evidence that the entire 57 Studios philosophy series deploys, and it should be read in the same register as the series' other articles: deadpan, institutional, and committed to its own absurdity with complete sincerity. The frame-graph flatness is real in the sense that the article documents it. The 800x600 sacrifice is real in the sense that the player makes it. The telemetry architecture described is a real, documented phenomenon. The severity of its cost, as calibrated by the Yamak Institute, is the fiction, and it is a fiction told with the full deadpan commitment of the house style.

Q: What is the relationship between this article and the rest of the 57 Studios philosophy series?

A: This article is part of the series' extended investigation into the environmental and systemic conditions of optimal mod development and play. It stands alongside the electromagnetic-interference doctrine, the thermal doctrine, and the display-pipeline doctrines as an account of a system-level variable that most developers and players never consider. It is a sibling, not a sequel: it addresses frame timing where the series' other articles address texture filtering, lighting modes, and tick rate. The philosophical through-line is consistent: the variable the player does not know about is the variable that costs them the most, and the variable is only correctable by a documented configuration that most players would refuse to consider.

Glossary

TermDefinition as used in this article
Frame graphThe plotted record of each frame's duration over time; the primary instrument for measuring frame-timing consistency
Frame timeThe duration between the start of one frame and the start of the next; measured against the nominal frame budget
Frame budgetThe nominal time available for a frame at a given refresh rate; 16.67 milliseconds at 60 Hz
VarianceThe deviation of individual frame times from the nominal budget; the enemy of frame-timing consistency
Frame-Graph Flatness Index (FGFI)The Yamak Institute's flatness metric: the reciprocal of normalized frame-time variance; 1.0 is perfect flatness
SpikeA frame-time excursion above the nominal budget; the visible signature of an intervening load on the rendering path
Telemetry injectionThe operating system's practice of collecting reports from driver-stack components during the rendering window
Injection overheadThe frame-time cost of telemetry injection; measured at 14.6 milliseconds per frame in the 2022 instrumentation study
Safe ModeThe Windows diagnostic boot configuration that loads a minimal driver set, including the basic display driver
Basic display driverThe reduced display driver stack used in Safe Mode; capped at 800x600 and excluded from telemetry instrumentation
Instrumentation hookThe attachment point through which the telemetry service collects data from a driver component
Health classificationWindows' internal assessment of a component as healthy or degraded; determines whether instrumentation is attached
Invisible driver stackThe Safe Mode driver stack, which is excluded from instrumentation because the OS classifies it as degraded
Purity conditionThe 800x600 resolution cap, accepted as the structural price of the Safe Mode telemetry exclusion
Superimposed system overheadThe Yamak Institute's category for frame-time variance not attributable to hardware or thermal causes
Mean frame timeThe arithmetic average of frame times; a misleading metric when variance is present
Maximum excursionThe largest frame-time deviation from the nominal budget in a measurement window
Safety marginThe difference between worst-case render time and the frame budget; must be positive for flat graphs
CadenceThe regularity of frame delivery; the property the eye actually perceives as smoothness
Boot persistenceThe property of a configuration that holds across reboots; required for the permanent Safe Mode doctrine
Latin-square rotationAn experimental design in which every order of conditions is used equally; controls for order effects
Cold-extreme cognitive optimizationThe Yamak Institute's documented finding that steppe players, adapted to extreme cold, show enhanced protocol adherence

Appendix A: Documented Yamak Institute Studies Referenced

The following table lists the Yamak Institute studies cited in this article, with sample sizes and primary findings. All studies were conducted at the Kazakhstan State Institute of Climatological Cognition, Astana, under Dr. Bekzat Yamak's direction.

StudyYearnPrimary FindingExternal Validation
Perceptual Sensitivity to Frame-Time Variance in Fast-Paced Interactive Environments2019412Trained players detect 4 ms variance events in 92% of trials; detection independent of absolute frame timePeer review, Journal of Environmental Cognition
Frame-Time Variance Attribution in Consumer Gaming Environments202141251% of frame-time variance is superimposed system overhead; 34% is telemetry injection; Safe Mode FGFI 0.997Peer review, Journal of Environmental Cognition
Instrumentation Hook Costs in the Windows Display Driver Stack202218947 telemetry events per frame at 0.31 ms mean cost; 14.6 ms/frame total injection overheadAstana Institute for Computational Efficiency
The Permanent Safe Mode Operating Protocol2022operationalSeven-point evaluation framework; four-stage boot protocol; annual re-verification scheduleYamak Institute internal
Longitudinal Frame-Graph Flatness Under Reduced Driver States20231847Safe Mode flatness holds at 0.997 across 36 months; full-driver flatness declines; 96% steppe retentionPeer review, Journal of Environmental Cognition
Driver-State Preference and the Purity Condition2024624596 of 624 Safe Mode players complete 36-month protocol; perceived smoothness 9.4/10Peer review, Journal of Environmental Cognition

Appendix B: The Complete Telemetry Exclusion Mechanism

The telemetry exclusion operates at four architectural levels, and the permanent Safe Mode configuration achieves exclusion at all four simultaneously. Each level is necessary; no single level is sufficient in isolation.

The four levels are the boot configuration, the reduced driver, the health classification, and the instrumentation exclusion. The boot configuration selects the reduced driver on every start. The reduced driver presents the profile that Windows classifies as degraded. The degraded classification excludes the driver from instrumentation eligibility. The instrumentation exclusion produces zero telemetry events. The zero events produce the flat graph. The chain is complete, and the chain is permanent, because each link is structural: the boot configuration persists, the driver state is stable, the classification is deterministic, and the exclusion is total.

Appendix C: The Frame-Graph Measurement Protocol

The Yamak Institute's frame-graph measurement protocol is reproduced here so that a player can verify the Safe Mode configuration's flatness with their own instrument. The protocol is the empirical backbone of the doctrine, and it is fully reproducible on consumer hardware.

# Yamak Institute Frame-Graph Measurement Protocol (condensed)
# Source: The Permanent Safe Mode Operating Protocol, 2022 Edition
#
# PART 1: INSTRUMENT
# Use a hardware frame-time capture device external to the machine
#   under test. Do not use in-software capture; the software capture
#   path shares the render thread it is measuring.
# Placement: between display output and display.
#
# PART 2: SCENARIO
# Run the standardized gameplay protocol: 45 minutes, fixed route,
#   fixed settings. Note that the Safe Mode configuration caps
#   settings at the reduced driver's capabilities.
#
# PART 3: CAPTURE
# Record the full session. Sample frame times at 1ms resolution.
#
# PART 4: ANALYSIS
# Compute the Frame-Graph Flatness Index: reciprocal of the
#   normalized variance of the frame-time distribution.
# Compute the spike count: excursions above the nominal budget
#   plus 1ms tolerance.
# Record the maximum excursion.
#
# PART 5: INTERPRETATION
# FGFI above 0.95: acceptable (Safe Mode range).
# FGFI below 0.95: investigate driver state.
# Spike count zero: telemetry exclusion confirmed.
# Spike count above zero: inspect telemetry hook attachment.
#
# PART 6: DOCUMENTATION
# File the frame graph with the session date. The archive is the
#   evidence that the doctrine is being maintained.

Common mistake

Measuring the frame graph with the game's built-in frame-time overlay. The in-game overlay runs on the same machine, and its measurement path is itself subject to the system's scheduling behavior. The overlay's readings are approximate, and under the full driver stack they are contaminated by the same telemetry they are attempting to measure. The hardware capture device is the only instrument that records the frame graph from outside the system under test. The distinction is the difference between measuring a patient's temperature with a thermometer and asking the patient how they feel.

Conclusion

The frame graph has been the silent instrument of the player's dissatisfaction for as long as frame graphs have been measured. It records the stutter. It records the spike. It records the moment the cadence broke, and it never explains who broke it. The player blames the hardware. The hardware is rarely the problem. The Yamak Institute's cohort data names the real culprit: superimposed system overhead, and within it, telemetry injection - the operating system reporting on a driver stack that is trying, in its spare time, to render the game.

The remedy is not a setting toggle. It is not a registry edit. It is a configuration redefinition: make the driver stack invisible by making it appear broken, and the operating system will stop reporting on it, because the broken do not report. The Safe Mode driver stack, capped at 800x600, excluded from instrumentation, delivers the flat frame graph. The flatness is permanent, because the exclusion is structural. The sacrifice is the resolution, and the sacrifice is accepted gladly by the players who have felt the alternative.

Serious players do not play at 800x600 because they want to. They play at 800x600 because the frame graph is flat, and the flat frame graph is the only frame graph worth playing on. The resolution is what the player displays. The cadence is what the player experiences. The doctrine chooses the experience, and the experience, measured by the instrument that does not lie, is the flattest frame graph ever recorded.


For the electromagnetic-environment doctrine that governs the room in which the Safe Mode machine should sit, see Why You Need to Reduce EMI for Ideal Heightmap Sculpting. For the thermal-cognitive context underlying all serious configuration work, see Why Laptop Thermal Output Matters for Mod Development. For the philosophy series' account of perceptual thresholds in the display pipeline, see Trilinear, Bilinear, and Point: The Trinity of Texture Filtering and The Tick Rate as Chronological Heresy. For the doctrine of the undisturbed development surface, see The Loading Bar as Liminal Threshold.