| Previous | Next |
| STATUS_GRAPHICS_INVALID_COLORBASIS | STATUS_GRAPHICS_TARGET_NOT_IN_TOPOLOGY |
STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE
Pixel-value access mode does not match the surface semantics
STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE is a Windows NTSTATUS value from the graphics/display facility. For STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE, it belongs to the WDDM kernel display stack rather than to a Win32 GDI error alone, so the useful context is usually the adapter, VidPN object, child device, present path, or primary allocation involved in the call.
D3DKMDT defines a pixel-value access mode to describe how values or palette indices are stored in the primary surface of a video present source. This status means that access-mode value is not valid for the surface and path being configured.
This is usually caused by mixing indexed and direct-color assumptions, copying attributes from a different surface format, or passing an uninitialized enumeration. Check it together with pixel format and color basis; treating each field independently often hides the incompatible combination.
What to check for STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE
- Log pixel format, color basis, and pixel-value access mode together.
- Verify that the selected mode supports the same surface semantics as the primary allocation.
- Clear or rebuild display-mode attributes when changing from legacy or palette-based paths.
References for STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE
Looking for a different code? Search another status or error code.