<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:st1="urn:schemas-microsoft-com:office:smarttags" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<meta name=Generator content="Microsoft Word 11 (filtered medium)">
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
 name="PersonName"/>
<!--[if !mso]>
<style>
st1\:*{behavior:url(#default#ieooui) }
</style>
<![endif]-->
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        text-align:justify;
        text-justify:inter-ideograph;
        font-size:10.5pt;
        font-family:"Times New Roman";}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline;}
p.MsoPlainText, li.MsoPlainText, div.MsoPlainText
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
 /* Page Definitions */
 @page Section1
        {size:595.3pt 841.9pt;
        margin:72.0pt 69.65pt 72.0pt 69.65pt;
        layout-grid:15.6pt;}
div.Section1
        {page:Section1;}
-->
</style>

</head>

<body lang=ZH-CN link=blue vlink=purple style='text-justify-trim:punctuation'>

<div class=Section1 style='layout-grid:15.6pt'>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>Hi<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>We have implemented GL_TOTAL_PHYSICAL_MEMORY for about
8 months, so you will not get the GL_INVALID_ENUM error. I think it will be
documented later.<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>I have tested with your patch with 3 ATI asics, all of
them can get the correct amount of video memory (1GB, 256MB, 128MB).<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>For the reason that GL_TOTAL_PHYSICAL_MEMORY is
implemented after GL_ATI_meminfo, so if a user uses too old driver (about
before Catalyst 9.2), he may have problems to get the correct amount of video
memory, so I suggested to add the following code in your patches:<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>+��� if(GL_SUPPORT(ATI_MEMINFO))<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>+��� {<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>+������� /* All GL_ATI_meminfo enums return 4 ints,
even the (undocumented)<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>+�������� * GL_TOTAL_PHYSICAL_MEMORY_ATI one, which
returns {mem, 0, 0, 0} */<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>+������� GLint mem[4]<b><span style='font-weight:bold'>
= {0}</span></b>;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>+������� /* Returns the vidmem in KB */<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>+������ �glGetIntegerv(GL_TOTAL_PHYSICAL_MEMORY_ATI,
mem);<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>+������� TRACE(&quot;Video memory from OpenGL: %d
MB\n&quot;, mem[0] / 1024);<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>+������� gl_info-&gt;vidmem = mem[0] * 1024; /*
convert from KBs to bytes */<o:p></o:p></span></font></p>

<p class=MsoPlainText><b><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt;font-weight:bold'>+������� if(gl_info-&gt;vidmem &lt;
64 * 1024 * 1024)<o:p></o:p></span></font></b></p>

<p class=MsoPlainText><b><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt;font-weight:bold'>+������� ����gl_info-&gt;vidmem = 64
* 1024 * 1024;<o:p></o:p></span></font></b></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>+��� }<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>Please tell me if you have any questions, thanks and
good night!<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>Regards<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>Sunny<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>-----Original Message-----<br>
From: Stefan D�singer [mailto:stefandoesinger@gmx.at] <br>
Sent: Friday, August 14, 2009 7:13 PM<br>
To: Sun, Sunny<br>
Cc: Roderick Colenbrander; wine-devel@winehq.org; ORCA Linux<br>
Subject: Re: about video memory detection in wine</span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>Hi,<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>Can you give the attached patches a try? Do they
detect the correct amount of <o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>video memory?<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>Thanks,<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>Stefan<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>Am Friday 14 August 2009 11:58:12 schrieb Sun, Sunny:<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; Hi<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; I think it is difficult to maintain a large list
of all ASICs, for you have<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; to change the list from time to time when a new
ASIC is released. Actually<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; we have provided the functionality for getting
total video memory, you can<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; use the following code to get the total video
memory with ATI cards.<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; #define GL_TOTAL_PHYSICAL_MEMORY_ATI��� 0x87FE<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; const char *glExtensions = (const
char*)glGetString(GL_EXTENSIONS);<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; if(strstr(glExtensions,
&quot;GL_ATI_meminfo&quot;))<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; {<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;�������� int total_mem[4] = {0};<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;��������
glGetIntegerv(GL_TOTAL_PHYSICAL_MEMORY_ATI, total_mem); //<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; total_mem[0] contains the total video memory size
and the value is in Kbyte<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;�������� vidmem = total_mem[0] / 1024;
//converting from Kbyte to Mbyte<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; }<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; Regards<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; Sunny<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; -----Original Message-----<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; From: Roderick Colenbrander
[mailto:thunderbird2k@gmail.com]<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; Sent: Friday, August 14, 2009 1:44 AM<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; To: Stefan D�singer<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; Cc: wine-devel@winehq.org; <st1:PersonName w:st="on">Hu,
 Li</st1:PersonName>; Jin, Jian-Rong; <st1:PersonName w:st="on">Wang, Robin</st1:PersonName>;
Guan,<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; Xiao-Feng; Sun, Sunny Subject: Re: about video
memory detection in wine<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; On Thu, Aug 13, 2009 at 6:59 PM, Stefan
D�singer&lt;stefandoesinger@gmx.at&gt; <o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>wrote:<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; Am Wednesday 12 August 2009 10:04:10 schrieb
Sun, Sunny:<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;&gt; I think you can first detect
GL_ATI_meminfo in<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;&gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;&gt; glGetString(GL_EXTENSIONS); if
GL_ATI_meminfo exists, then you can use<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;&gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;&gt; glGetIntegerv(GL_VBO_FREE_MEMORY_ATI,
param) to get the current free<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;&gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;&gt; video memory, you can see more info at:<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; A minor problem with GL_ATI_meminfo is that
it doesn't report the total<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; amount<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; of video memory available. D3D8 and D3D9
only report the free amount as<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; well,<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; but DirectDraw can return the total amount.
There are some games that<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; first<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; query the total amount using ddraw, then
continue with d3d8 or 9.<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; Depending<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; on what other apps are doing, reporting the
currently free amount as<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; total<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; might result in the app thinking that free
vidmem &gt; total vidmem, running<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; into all sorts of troubles. (For example,
another app frees a lot of<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; textures<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; between the ddraw vidmem query and the d3d9
vidmem query)<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; It is even worse. Even OpenGL apps like WoW use
ddraw for querying the<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; amount of video memory at startup!<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; In case of Nvidia the amount of video memory and
the pci ids are<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; advertised using the NV-CONTROL extension. At
some point I plan on<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; adding code for that. Even when using such
extension the current<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; fallback is still needed. The list needs some
updates.<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; The other issue is that if some other apps
use lots of video memory(like<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; Compiz, etc), then we can still run into the
same out of memory issue if<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; other apps consume too much video memory.<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; We should probably also fall back to a saner
default on newer d3d10 class<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt;<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; &gt; cards - a radeon 9500 isn't really
representative for them any more.<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; I still have to update that part but haven't had
time for it yet.<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt;<o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'>&gt; Roderick<o:p></o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoPlainText><font size=3 face="Times New Roman"><span lang=EN-US
style='font-size:12.0pt'><o:p>&nbsp;</o:p></span></font></p>

</div>

</body>

</html>