<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Vulkan Multi viewports overlapped in Intel® Arc™ Discrete Graphics</title>
    <link>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1693061#M25261</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gearslogy_0-1748443934968.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/66154i4442D9A43FF6F836/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="gearslogy_0-1748443934968.png" alt="gearslogy_0-1748443934968.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;src code:&amp;nbsp;&lt;A href="https://github.com/gearslogy/LLVK_Beginning/blob/main/renderer/multi_viewports/MultiViewPorts.cpp" target="_blank"&gt;LLVK_Beginning/renderer/multi_viewports/MultiViewPorts.cpp at main · gearslogy/LLVK_Beginning&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Multiple windows overlapped&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;geom shader:&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;#version 460 core
#extension GL_ARB_viewport_array : enable

layout(constant_id = 0 ) const int VIEWPORTS_NUM = 2;
layout (triangles, invocations = 2) in;
layout (triangle_strip, max_vertices = 3) out;

layout (set=0, binding=0) uniform UBO{
    mat4 proj[2];
    mat4 modelView[2];
    vec4 lightPos;
}ubo;

// 输入
layout(location=0) in INPUT{
    vec3 N;
    vec3 T;
    vec2 uv0;
}gs_in[];

// 输出
layout(location=0) out OUTPUT{
    vec3 out_N;
    vec3 out_T;
    vec2 out_uv0;
};

void main(){
    for(int i=0; i &amp;lt;gl_in.length(); i++){
        out_N = mat3(ubo.modelView[gl_InvocationID]) * gs_in[i].N;
        out_T = mat3(ubo.modelView[gl_InvocationID]) * gs_in[i].T;
        out_uv0 = gs_in[i].uv0;

        // 变换position -&amp;gt; P * V * M * p
        vec4 pos = gl_in[i].gl_Position;
        vec4 worldPos = ubo.modelView[gl_InvocationID] * pos;
        gl_Position = ubo.proj[gl_InvocationID] * worldPos;

        // important! viewport
        gl_ViewportIndex = gl_InvocationID;

        gl_PrimitiveID = gl_PrimitiveIDIn;
        EmitVertex();
    }
    EndPrimitive();
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C++&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt; // set viewports  0 = right(TOP), 1 = left(perspective)
    VkViewport viewports[2]{};
    VkRect2D   scissors[2]{};

    viewports[0] = FnCommand::viewport(width/2, height, width/2, 0); // right TOP view
    viewports[1] = FnCommand::viewport(width/2, height, 0, 0);       // left perspective view

    scissors[0] = FnCommand::scissor(width/2, height, width/2, 0); // right TOP view
    scissors[1] = FnCommand::scissor(width/2, height, 0, 0);       // left perspective view&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 May 2025 14:55:02 GMT</pubDate>
    <dc:creator>gearslogy</dc:creator>
    <dc:date>2025-05-28T14:55:02Z</dc:date>
    <item>
      <title>Vulkan Multi viewports overlapped</title>
      <link>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1693061#M25261</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gearslogy_0-1748443934968.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/66154i4442D9A43FF6F836/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="gearslogy_0-1748443934968.png" alt="gearslogy_0-1748443934968.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;src code:&amp;nbsp;&lt;A href="https://github.com/gearslogy/LLVK_Beginning/blob/main/renderer/multi_viewports/MultiViewPorts.cpp" target="_blank"&gt;LLVK_Beginning/renderer/multi_viewports/MultiViewPorts.cpp at main · gearslogy/LLVK_Beginning&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Multiple windows overlapped&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;geom shader:&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;#version 460 core
#extension GL_ARB_viewport_array : enable

layout(constant_id = 0 ) const int VIEWPORTS_NUM = 2;
layout (triangles, invocations = 2) in;
layout (triangle_strip, max_vertices = 3) out;

layout (set=0, binding=0) uniform UBO{
    mat4 proj[2];
    mat4 modelView[2];
    vec4 lightPos;
}ubo;

// 输入
layout(location=0) in INPUT{
    vec3 N;
    vec3 T;
    vec2 uv0;
}gs_in[];

// 输出
layout(location=0) out OUTPUT{
    vec3 out_N;
    vec3 out_T;
    vec2 out_uv0;
};

void main(){
    for(int i=0; i &amp;lt;gl_in.length(); i++){
        out_N = mat3(ubo.modelView[gl_InvocationID]) * gs_in[i].N;
        out_T = mat3(ubo.modelView[gl_InvocationID]) * gs_in[i].T;
        out_uv0 = gs_in[i].uv0;

        // 变换position -&amp;gt; P * V * M * p
        vec4 pos = gl_in[i].gl_Position;
        vec4 worldPos = ubo.modelView[gl_InvocationID] * pos;
        gl_Position = ubo.proj[gl_InvocationID] * worldPos;

        // important! viewport
        gl_ViewportIndex = gl_InvocationID;

        gl_PrimitiveID = gl_PrimitiveIDIn;
        EmitVertex();
    }
    EndPrimitive();
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C++&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt; // set viewports  0 = right(TOP), 1 = left(perspective)
    VkViewport viewports[2]{};
    VkRect2D   scissors[2]{};

    viewports[0] = FnCommand::viewport(width/2, height, width/2, 0); // right TOP view
    viewports[1] = FnCommand::viewport(width/2, height, 0, 0);       // left perspective view

    scissors[0] = FnCommand::scissor(width/2, height, width/2, 0); // right TOP view
    scissors[1] = FnCommand::scissor(width/2, height, 0, 0);       // left perspective view&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 May 2025 14:55:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1693061#M25261</guid>
      <dc:creator>gearslogy</dc:creator>
      <dc:date>2025-05-28T14:55:02Z</dc:date>
    </item>
    <item>
      <title>Re:Vulkan Multi viewports overlapped</title>
      <link>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1693458#M25344</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;gearslogy.&lt;/P&gt;&lt;P&gt;Thank you for posting in our Community.&amp;nbsp;From analysis of the GLSL geometry shader and Vulkan setup in the provided source, I'm not sure if it is clear that the implementation leverages multi-viewport rendering via geometry shader invocations using GL_ARB_viewport_array. The C++ logic splits the screen horizontally into two distinct halves, assigning:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Viewport 0 (right side of screen): x = width / 2&lt;/P&gt;&lt;P&gt;Viewport 1 (left side of screen): x = 0&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;For greater clarity, I’d appreciate your input on a few key points:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;What specifically do you mean by “overlapped”? Are you referring to actual pixel overdraw, blending artifacts, or unintended culling behavior?&lt;/LI&gt;&lt;LI&gt;What is the exact Intel GPU model and driver version being used?&lt;/LI&gt;&lt;LI&gt;Is this behavior observed in the rendered output (visually), or inferred from debugger/profiler output?&lt;/LI&gt;&lt;LI&gt;Beyond this, have you observed any other issues specific to Intel hardware?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Have a nice day!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Von M.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 30 May 2025 03:05:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1693458#M25344</guid>
      <dc:creator>VonM_Intel</dc:creator>
      <dc:date>2025-05-30T03:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Vulkan Multi viewports overlapped</title>
      <link>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1693493#M25351</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gearslogy_0-1748582527606.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/66237i5EB24FA8B61E3231/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="gearslogy_0-1748582527606.png" alt="gearslogy_0-1748582527606.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;above is right result(test at RTX5070TI, same code)&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 05:25:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1693493#M25351</guid>
      <dc:creator>gearslogy</dc:creator>
      <dc:date>2025-05-30T05:25:59Z</dc:date>
    </item>
    <item>
      <title>Re:Vulkan Multi viewports overlapped</title>
      <link>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1693527#M25364</link>
      <description>&lt;P&gt;Hello, gearslogy.&lt;/P&gt;&lt;P&gt;Thanks for confirming that you ran the test on an RTX 5070 Ti. Just to check, are you also using any Intel® Arc™ graphics card in your system, either as your main GPU or alongside the RTX? I ask because the RTX isn't one of our products, and I’d like to make sure we’re looking at the right setup on your end. Additionally, I’d like to better understand your use case. Are you a developer, specifically involved in game or graphics development? This context will help tailor my recommendations more effectively, particularly around driver compatibility and API-level behaviors across different GPU architectures.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Von M.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 30 May 2025 08:54:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1693527#M25364</guid>
      <dc:creator>VonM_Intel</dc:creator>
      <dc:date>2025-05-30T08:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Vulkan Multi viewports overlapped</title>
      <link>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1693544#M25373</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;I&lt;/SPAN&gt;&lt;SPAN class=""&gt;'&lt;/SPAN&gt;&lt;SPAN class=""&gt;m&lt;/SPAN&gt; &lt;SPAN class=""&gt;a&lt;/SPAN&gt; &lt;SPAN class=""&gt;game&lt;/SPAN&gt; &lt;SPAN class=""&gt;developer&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN&gt; I&lt;/SPAN&gt; &lt;SPAN&gt;t&lt;/SPAN&gt;&lt;SPAN class=""&gt;ested &lt;/SPAN&gt;&lt;SPAN&gt;t&lt;/SPAN&gt;&lt;SPAN class=""&gt;he &lt;/SPAN&gt;&lt;SPAN&gt;B&lt;/SPAN&gt;&lt;SPAN class=""&gt;580 &lt;/SPAN&gt;&lt;SPAN&gt;g&lt;/SPAN&gt;&lt;SPAN class=""&gt;raphics &lt;/SPAN&gt;&lt;SPAN&gt;c&lt;/SPAN&gt;&lt;SPAN class=""&gt;ard,&lt;/SPAN&gt; &lt;SPAN&gt;u&lt;/SPAN&gt;&lt;SPAN class=""&gt;sing &lt;/SPAN&gt;&lt;SPAN&gt;t&lt;/SPAN&gt;&lt;SPAN class=""&gt;he &lt;/SPAN&gt;&lt;SPAN&gt;l&lt;/SPAN&gt;&lt;SPAN class=""&gt;atest &lt;/SPAN&gt;&lt;SPAN&gt;d&lt;/SPAN&gt;&lt;SPAN class=""&gt;river,&lt;/SPAN&gt; &lt;SPAN&gt;a&lt;/SPAN&gt;&lt;SPAN class=""&gt;nd &lt;/SPAN&gt;&lt;SPAN&gt;t&lt;/SPAN&gt;&lt;SPAN class=""&gt;he &lt;/SPAN&gt;&lt;SPAN&gt;r&lt;/SPAN&gt;&lt;SPAN class=""&gt;esult &lt;/SPAN&gt;&lt;SPAN&gt;c&lt;/SPAN&gt;&lt;SPAN class=""&gt;ame &lt;/SPAN&gt;&lt;SPAN&gt;o&lt;/SPAN&gt;&lt;SPAN class=""&gt;ut &lt;/SPAN&gt;&lt;SPAN&gt;w&lt;/SPAN&gt;&lt;SPAN class=""&gt;rong.&lt;/SPAN&gt; &lt;SPAN&gt;Th&lt;/SPAN&gt;&lt;SPAN class=""&gt;e p&lt;/SPAN&gt;&lt;SPAN&gt;l&lt;/SPAN&gt;&lt;SPAN class=""&gt;atform u&lt;/SPAN&gt;&lt;SPAN&gt;s&lt;/SPAN&gt;&lt;SPAN class=""&gt;ed i&lt;/SPAN&gt;&lt;SPAN&gt;s&lt;/SPAN&gt;&lt;SPAN class=""&gt; A&lt;/SPAN&gt;&lt;SPAN&gt;M&lt;/SPAN&gt;&lt;SPAN class=""&gt;D9950X B&lt;/SPAN&gt;&lt;SPAN&gt;5&lt;/SPAN&gt;&lt;SPAN class=""&gt;80&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;I&lt;/SPAN&gt; &lt;SPAN&gt;u&lt;/SPAN&gt;&lt;SPAN class=""&gt;se &lt;/SPAN&gt;&lt;SPAN&gt;a&lt;/SPAN&gt;&lt;SPAN class=""&gt;nother &lt;/SPAN&gt;&lt;SPAN&gt;c&lt;/SPAN&gt;&lt;SPAN class=""&gt;omputer,&lt;/SPAN&gt; &lt;SPAN&gt;7&lt;/SPAN&gt;&lt;SPAN class=""&gt;950X &lt;/SPAN&gt;&lt;SPAN&gt;5&lt;/SPAN&gt;&lt;SPAN class=""&gt;070TI &lt;/SPAN&gt;&lt;SPAN&gt;i&lt;/SPAN&gt;&lt;SPAN class=""&gt;s &lt;/SPAN&gt;&lt;SPAN&gt;n&lt;/SPAN&gt;&lt;SPAN class=""&gt;o &lt;/SPAN&gt;&lt;SPAN&gt;p&lt;/SPAN&gt;&lt;SPAN class=""&gt;roblem,&lt;/SPAN&gt; &lt;SPAN&gt;a&lt;/SPAN&gt;&lt;SPAN class=""&gt;nd &lt;/SPAN&gt;&lt;SPAN&gt;I&lt;/SPAN&gt; &lt;SPAN&gt;r&lt;/SPAN&gt;&lt;SPAN class=""&gt;un &lt;/SPAN&gt;&lt;SPAN&gt;t&lt;/SPAN&gt;&lt;SPAN class=""&gt;his &lt;/SPAN&gt;&lt;SPAN&gt;p&lt;/SPAN&gt;&lt;SPAN class=""&gt;rogram &lt;/SPAN&gt;&lt;SPAN&gt;o&lt;/SPAN&gt;&lt;SPAN class=""&gt;n &lt;/SPAN&gt;&lt;SPAN&gt;o&lt;/SPAN&gt;&lt;SPAN class=""&gt;ther &lt;/SPAN&gt;&lt;SPAN&gt;N&lt;/SPAN&gt;&lt;SPAN class=""&gt;vidia &lt;/SPAN&gt;&lt;SPAN&gt;d&lt;/SPAN&gt;&lt;SPAN class=""&gt;isplays&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;I need you to see if there is a problem with the vulkan driver, and there is no problem with the NVIDIA graphics card . Thanks&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 12:18:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1693544#M25373</guid>
      <dc:creator>gearslogy</dc:creator>
      <dc:date>2025-05-30T12:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Vulkan Multi viewports overlapped</title>
      <link>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1693884#M25465</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;SPAN&gt;gearslogy.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P data-start="74" data-end="385"&gt;Since the issue appears to be isolated to the B580 integrated graphics with the latest driver, and does not occur on your 7950X system with the 5070 Ti or other NVIDIA GPUs,&amp;nbsp;this may indicate a potential compatibility or performance concern specific to the Vulkan driver stack on the B580 platform.&lt;/P&gt;
&lt;P data-start="74" data-end="385"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="387" data-end="824"&gt;To investigate this thoroughly and efficiently, I’d like to request a few additional details. Specifically, I’m looking to confirm the exact graphics configuration, driver versions, and any related system behavior or errors. To facilitate this, I kindly ask you to run the &lt;A href="https://www.intel.com/content/www/us/en/support/articles/000057926/memory-and-storage.html" target="_self"&gt;&lt;STRONG data-start="660" data-end="699"&gt;Intel® System Support Utility (SSU)&lt;/STRONG&gt; tool&lt;/A&gt;. This will allow me to gather a comprehensive overview of your system, which is critical to identifying the root cause. For your convenience and data privacy, I’ve already sent you a separate email with instructions on submitting the SSU report. Once I receive it, I’ll be in a better position to further investigate the issue and provide more targeted assistance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Von M.&lt;BR /&gt;Intel Customer Support Technician&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 04:09:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1693884#M25465</guid>
      <dc:creator>VonM_Intel</dc:creator>
      <dc:date>2025-06-02T04:09:42Z</dc:date>
    </item>
    <item>
      <title>Re:Vulkan Multi viewports overlapped</title>
      <link>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1695031#M25710</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;gearslogy.&lt;/P&gt;&lt;P&gt;Have you had a chance to review my previous response? Please let us know if you require any further assistance. I'm here to help.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Von M.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Jun 2025 08:30:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1695031#M25710</guid>
      <dc:creator>VonM_Intel</dc:creator>
      <dc:date>2025-06-05T08:30:23Z</dc:date>
    </item>
    <item>
      <title>Re:Vulkan Multi viewports overlapped</title>
      <link>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1695994#M25887</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;gearslogy.&lt;/P&gt;&lt;P&gt;I have not heard back from you, so I will close this inquiry now. If you need further assistance, please submit a new question as this thread will no longer be monitored.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Von M.&lt;/P&gt;&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Jun 2025 03:08:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Arc-Discrete-Graphics/Vulkan-Multi-viewports-overlapped/m-p/1695994#M25887</guid>
      <dc:creator>VonM_Intel</dc:creator>
      <dc:date>2025-06-10T03:08:19Z</dc:date>
    </item>
  </channel>
</rss>

