- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
After updating Grafics Drive to a certain version in 2024, an MSAA initialization error occurred and it became unusable. The specific version number is unknown. After upgrading to Windows 11 24H2, the driver was also updated and this problem could no longer be avoided.
Specifically, the following code that initializes an MSAA buffer returns an error:
========================================================================
[VC++]
D3D12_CLEAR_VALUE clearColor{};
clearColor.Format = swapChainDesc.Format;
auto msaaColorDesc = CD3DX12_RESOURCE_DESC::Tex2D(
swapChainDesc.Format,
width,
height,
1, 1, 16
);
msaaColorDesc.Flags |= D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET;
const auto heapProps = CD3DX12_HEAP_PROPERTIES(D3D12_HEAP_TYPE_DEFAULT);
ThrowIfFailed(
m_device->CreateCommittedResource( // Error return 0x80070057
&heapProps,
D3D12_HEAP_FLAG_NONE,
&msaaColorDesc,
D3D12_RESOURCE_STATE_RESOLVE_SOURCE,
&clearColor,
IID_PPV_ARGS(m_msaaBuffer.ReleaseAndGetAddressOf())
)
);
========================================================================
Is there any way to solve this problem other than waiting for a driver update? Or do I need to deal with the program I wrote?
~~~~~~
12th Gen Intel(R) Core(TM) i7-12700K 3.60 GHz
RAM 32.0 GB
Intel(R) UHD Graphics 770 Ver.32.0.101.6460
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello cafelasm,
Thank you for posting in Intel community Forum.
For me to further check this, please help provide the following details:
- What is your OS?
- Where are you getting this settings? Can you share the screenshots?
- Do you still remember the driver version that you used before when it was working?
- What are the troubleshooting steps that you tried so far?
If you have questions, please let us know. Thank you.
Best regards,
Michael L.
Intel Customer Support Technician
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have determined that Intel has no intention of fixing the bugs in this graphics driver. A bug-free version of the graphics driver is no longer available.
I will state in my published application that it is not compatible with Intel's graphics driver, and will fix it to use the software driver.
Intel's graphics drivers have had many bugs for a long time, and this is what I should have done from the beginning.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello cafelasm,
Thank you for the update.
I am here to help you that is why I am trying to gather more details about the reported issue.
If there is indeed a bug, I will also present it to the proper team for them to make necessary changes.
If you have questions, please let us know. Thank you.
Best regards,
Michael L.
Intel Customer Support Technician
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello cafelasm,
I hope this message finds you well.
Were you able to check the previous post?
Please let us know if you still need assistance.
Best regards,
Michael L.
Intel Customer Support Technician
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello cafelasm,
I hope you are having a good day.
I am sending another follow up on the information that I requested.
Since we have not heard back from you, I need to close this inquiry.
If you need further assistance, please post a new question as this thread will no longer be monitored.
Thank you and have a great day.
Best regards,
Michael L.
Intel Customer Support Technician

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page