You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using mesa-dist-win version 24.2.7 on Windows version 9045.5131.
I am attempting to use llvmpipe for our application under single-threaded rendering.
The following call:
int32_tpixelFormat;
staticPIXELFORMATDESCRIPTORpfd=
{
sizeof(PIXELFORMATDESCRIPTOR), // Size of this pixel format descriptor1, // Version numberPFD_DRAW_TO_WINDOW | // Format must support windowPFD_SUPPORT_OPENGL | // Format must support OpenGLPFD_DOUBLEBUFFER, // Must support double bufferingPFD_TYPE_RGBA, // Request an RGBA format32, // Select our color depth0, 0, 0, 0, 0, 0, // Color bits ignored0, // No alpha buffer0, // Shift bit ignored0, // No accumulation buffer0, 0, 0, 0, // Accumulation bits ignored24, // 32 Bit z-buffer (depth buffer)8, // Stencil buffer0, // No auxiliary bufferPFD_MAIN_PLANE, // Main drawing layer0, // Reserved0, 0, 0// Layer masks ignored
};
pixelFormat=ChoosePixelFormat(hdc, &pfd);
returns 0, with error 203 being the output from GetLastError().
This occurs under the the following environment variable configurations:
GALLIUM_DRIVER=llvmpipe;LP_NUM_THREADS=1;
GALLIUM_DRIVER=softpipe;
GALLIUM_DRIVER=zink;LIBGL_ALWAYS_SOFTWARE=1
It does NOT occur with none of these variables set. This is a system with an RTX 3070 GPU.
Furthermore, if I replace PFD_DRAW_TO_WINDOW with PFD_DRAW_TO_BITMAP, I believe I run into a driver error. ChoosePixelForma() still returns 0, but no system error is generated with GetLastError().
The text was updated successfully, but these errors were encountered:
I am using mesa-dist-win version 24.2.7 on Windows version 9045.5131.
I am attempting to use llvmpipe for our application under single-threaded rendering.
The following call:
returns 0, with error 203 being the output from GetLastError().
This occurs under the the following environment variable configurations:
It does NOT occur with none of these variables set. This is a system with an RTX 3070 GPU.
Furthermore, if I replace PFD_DRAW_TO_WINDOW with PFD_DRAW_TO_BITMAP, I believe I run into a driver error. ChoosePixelForma() still returns 0, but no system error is generated with GetLastError().
The text was updated successfully, but these errors were encountered: