Home | History | Annotate | Download | only in Main

Lines Matching refs:textureMemory

289 		html += "<tr><td>Texture memory:</td><td><select name='textureMemory' title='The maximum amount of memory used for textures and other resources.'>\n";
290 html += "<option value='128'" + (config.textureMemory == 128 ? selected : empty) + ">128 MB</option>\n";
291 html += "<option value='256'" + (config.textureMemory == 256 ? selected : empty) + ">256 MB (default)</option>\n";
292 html += "<option value='512'" + (config.textureMemory == 512 ? selected : empty) + ">512 MB</option>\n";
293 html += "<option value='1024'" + (config.textureMemory == 1024 ? selected : empty) + ">1024 MB</option>\n";
294 html += "<option value='2048'" + (config.textureMemory == 2048 ? selected : empty) + ">2048 MB</option>\n";
564 else if(sscanf(post, "textureMemory=%d", &integer))
566 config.textureMemory = integer;
721 config.textureMemory = ini.getInteger("Capabilities", "TextureMemory", 256);
779 ini.addValue("Capabilities", "TextureMemory", itoa(config.textureMemory));