What does NTSTATUS 0xC01E0352 (STATUS_GRAPHICS_INVALID_SCANLINE_ORDERING) mean?

 
Previous Next
STATUS_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS STATUS_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED

STATUS_GRAPHICS_INVALID_SCANLINE_ORDERING

The scanline ordering field has an invalid value

VidPN mode data describes whether a mode is progressive, interlaced, or otherwise ordered according to display-driver data types. This status means the scanline-ordering field contains a value that is not valid for the interface.

Do not treat it as a refresh-rate issue first. A mode can have reasonable dimensions and timing values but still fail because its scanline-ordering enum is uninitialized, copied from incompatible data, or not supported by the structure version being used.

What to check

  • Print scanline ordering together with resolution, refresh, and mode ID.
  • Initialize mode structures fully before filling timing fields.
  • When converting EDID or synthetic modes, map source scanline flags to WDDM constants explicitly.

References


Looking for a different code? Search another status or error code.