]> git.xonotic.org Git - xonotic/xonotic.wiki.git/commitdiff
Rename .markdown -> .md
authorTimePath <andrew.hardaker1995@gmail.com>
Fri, 15 Apr 2016 00:40:51 +0000 (10:40 +1000)
committerTimePath <andrew.hardaker1995@gmail.com>
Fri, 15 Apr 2016 00:40:51 +0000 (10:40 +1000)
12 files changed:
Archive/Compiling_In_Windows.markdown [deleted file]
Archive/Compiling_In_Windows.md [new file with mode: 0644]
Hardware_Requirements.markdown [deleted file]
Hardware_Requirements.md [new file with mode: 0644]
Mapping/Basic_mapping_in_Radiant.markdown [deleted file]
Mapping/Basic_mapping_in_Radiant.md [new file with mode: 0644]
Pr.markdown [deleted file]
Pr.md [new file with mode: 0644]
Recording/Demo_Camera.markdown [deleted file]
Recording/Demo_Camera.md [new file with mode: 0644]
privacy-and-security.markdown [deleted file]
privacy-and-security.md [new file with mode: 0644]

diff --git a/Archive/Compiling_In_Windows.markdown b/Archive/Compiling_In_Windows.markdown
deleted file mode 100644 (file)
index 97666f9..0000000
+++ /dev/null
@@ -1,126 +0,0 @@
-Compiling In Windows
-====================
-
-**This guide has been replaced by a shorter alternative.** This guide should still work, and get you a standalone MinGW/MSYS environment with access to msysgit. The new method only makes use of msysgit and is therefore easier and faster to set up. See the [Repository Access](https://gitlab.com/xonotic/xonotic/wikis/Repository_Access#windows) page.
-
-This is an unofficial updated version of the outdated [Compiling in Windows](Outdated_Compiling_in_Windows) page. There are no more automated tools in this version of the guide.
-
-You will need about 10 gigabytes of disk space to keep the sources (the uncompressed texture files are quite large and git keeps a backup copy, doubling the actual size of the sources).
-
-Step 1: installing the prerequisites
-------------------------------------
-
-To compile and run Xonotic in Windows, you will need to download the following. Do not install anything yet, this is covered in the next section.
-
--   The latest version of [MinGW](http://sourceforge.net/projects/mingw/files/). At the time of writing this guide, mingw provides an installer (mingw-get-inst). More up-to-date information on how to get MinGW can be found on http://mingw.org
--   [msysgit](https://code.google.com/p/msysgit/downloads/list). Make sure you get the latest **full installer for official Git** (not the self-contained packages). At the time of writing this, the latest installer is called Git-1.7.11-preview20120710.exe.
-
-### Installing MinGW
-
-These instructions apply to mingw-get-inst. Run the installer. When setting up the path, if you do not pick the default, make at least sure that the installation path you choose contains no space in it. Thus, Program Files is out of question.
-
-When you reach the “select components” section, you need to check “MSYS Basic System” (**not** “MinGW Developer Toolkit”). You will also need the C compiler, which should be selected by default.
-
-When the setup is complete, you will get a “MinGW Shell” in your start menu. This is a Unix-like shell that you will soon use to manage and compile the Xonotic source files. It will also be used to launch the game.
-
-### Installing msysgit
-
-Run the installer.
-At the component selection screen (screenshot), uncheck the “Associate .sh files” option.  
-
-![](assets/images/git-1-components.png)
-
-Windows Explorer Integration can also optionnally be unselected — it is only useful if you plan on contributing and do not like using git purely from the command line to do so.
-When you get to the PATH adjusting screen (screenshot), you need to select the second option (Run Git from the Windows Command Prompt).  
-
-![](assets/images/git-2-path.png)
-
-This ensures that git can be run from the MinGW shell, as we will not use the shell that comes with msysgit for this.
-Finally, in the line ending screen (screenshot), keep the first option selected unless you know what you’re doing.  
-
-![](assets/images/git-3-crlf.png)
-
-### Installing the dependencies in MinGW
-
-Xonotic requires a few more packages in MinGW that are not provided by default. Installing them is quite simple, just open a MinGW Shell and type the following line:
-
-    mingw-get install msys-wget msys-unzip mingw32-libiconv mingw32-libintl msys-libopenssl
-
-You can paste text in the shell by right-clicking the title bar and selecting *Edit* \> *Paste*. But be careful with this, mistakes can happen!
-
-To close a MinGW Shell, just type
-
-    exit
-
-But keep this one open, we’re going to use it some more.
-
-Step 2: downloading the Xonotic source files
---------------------------------------------
-
-In this step, we will clone the Xonotic git repositories inside MinGW’s install directory.
-
-In your MinGW Shell, type
-
-    git clone git://git.xonotic.org/xonotic/xonotic.git
-
-This will clone the base repository, which contains a script called “`all`” that will manage the subrepositories. I will call this script `./all` to avoid confusion, as this is how we will be using it in the terminal.
-
-Next, type
-
-    cd xonotic
-    ./all update -l best
-
-The `cd` line tells the Shell to go inside the `xonotic` directory, where `./all` is located. In the second line, the `-l best` part asks `./all` to pick the best available mirror. This step will download several gigabytes of data, so expect it to take a while.
-
-Step 3: compiling
------------------
-
-Compiling the game is quite simple. In your MinGW Shell, just type
-
-    ./all compile
-
-This will compile gmqcc (which is a compiler for the QuakeC language), then the game code using gmqcc, then the DarkPlaces engine.
-
-This step can take a few minutes, so be patient! When it’s over, check the last few lines to see if it reports any errors.
-
-Step 4: running the game!
--------------------------
-
-To run the game, you have to use `./all` again:
-
-    ./all run
-
-If you ever need to start the game in windowed mode, you can launch it this way:
-
-    ./all run +vid_fullscreen 0
-
-By default, `./all` uses the SDL build (called `xonotic.exe` in releases). You can use the WGL build (`xonotic-wgl.exe`) like this:
-
-    ./all run wgl
-
-You will always need to use `./all` to launch the game. Do not forget that you need to be in the `xonotic` directory when you use the `./all` command. That means you have to type
-
-    cd xonotic
-
-when you start a MinGW Shell before updating, compiling, or running Xonotic.
-
-Keeping up to date
-------------------
-
-To keep up to date, all you need to do is repeat some of the steps above. More precisely, here is what you will usually type in a new MinGW Shell to update Xonotic to the latest git revision:
-
-    cd xonotic
-    ./all update
-    ./all compile
-
-You can optionally use this as the third line if the compilation does not work:
-
-    ./all compile -c
-
-This will remove the partially compiled files from the previous compiles. It has been known to resolve some errors before, but it can take a little longer to recompile everything.
-
-Getting help
-------------
-
-You can always ask for help in the [Xonotic forums](http://forums.xonotic.org), under the Help and Support section.
-
diff --git a/Archive/Compiling_In_Windows.md b/Archive/Compiling_In_Windows.md
new file mode 100644 (file)
index 0000000..97666f9
--- /dev/null
@@ -0,0 +1,126 @@
+Compiling In Windows
+====================
+
+**This guide has been replaced by a shorter alternative.** This guide should still work, and get you a standalone MinGW/MSYS environment with access to msysgit. The new method only makes use of msysgit and is therefore easier and faster to set up. See the [Repository Access](https://gitlab.com/xonotic/xonotic/wikis/Repository_Access#windows) page.
+
+This is an unofficial updated version of the outdated [Compiling in Windows](Outdated_Compiling_in_Windows) page. There are no more automated tools in this version of the guide.
+
+You will need about 10 gigabytes of disk space to keep the sources (the uncompressed texture files are quite large and git keeps a backup copy, doubling the actual size of the sources).
+
+Step 1: installing the prerequisites
+------------------------------------
+
+To compile and run Xonotic in Windows, you will need to download the following. Do not install anything yet, this is covered in the next section.
+
+-   The latest version of [MinGW](http://sourceforge.net/projects/mingw/files/). At the time of writing this guide, mingw provides an installer (mingw-get-inst). More up-to-date information on how to get MinGW can be found on http://mingw.org
+-   [msysgit](https://code.google.com/p/msysgit/downloads/list). Make sure you get the latest **full installer for official Git** (not the self-contained packages). At the time of writing this, the latest installer is called Git-1.7.11-preview20120710.exe.
+
+### Installing MinGW
+
+These instructions apply to mingw-get-inst. Run the installer. When setting up the path, if you do not pick the default, make at least sure that the installation path you choose contains no space in it. Thus, Program Files is out of question.
+
+When you reach the “select components” section, you need to check “MSYS Basic System” (**not** “MinGW Developer Toolkit”). You will also need the C compiler, which should be selected by default.
+
+When the setup is complete, you will get a “MinGW Shell” in your start menu. This is a Unix-like shell that you will soon use to manage and compile the Xonotic source files. It will also be used to launch the game.
+
+### Installing msysgit
+
+Run the installer.
+At the component selection screen (screenshot), uncheck the “Associate .sh files” option.  
+
+![](assets/images/git-1-components.png)
+
+Windows Explorer Integration can also optionnally be unselected — it is only useful if you plan on contributing and do not like using git purely from the command line to do so.
+When you get to the PATH adjusting screen (screenshot), you need to select the second option (Run Git from the Windows Command Prompt).  
+
+![](assets/images/git-2-path.png)
+
+This ensures that git can be run from the MinGW shell, as we will not use the shell that comes with msysgit for this.
+Finally, in the line ending screen (screenshot), keep the first option selected unless you know what you’re doing.  
+
+![](assets/images/git-3-crlf.png)
+
+### Installing the dependencies in MinGW
+
+Xonotic requires a few more packages in MinGW that are not provided by default. Installing them is quite simple, just open a MinGW Shell and type the following line:
+
+    mingw-get install msys-wget msys-unzip mingw32-libiconv mingw32-libintl msys-libopenssl
+
+You can paste text in the shell by right-clicking the title bar and selecting *Edit* \> *Paste*. But be careful with this, mistakes can happen!
+
+To close a MinGW Shell, just type
+
+    exit
+
+But keep this one open, we’re going to use it some more.
+
+Step 2: downloading the Xonotic source files
+--------------------------------------------
+
+In this step, we will clone the Xonotic git repositories inside MinGW’s install directory.
+
+In your MinGW Shell, type
+
+    git clone git://git.xonotic.org/xonotic/xonotic.git
+
+This will clone the base repository, which contains a script called “`all`” that will manage the subrepositories. I will call this script `./all` to avoid confusion, as this is how we will be using it in the terminal.
+
+Next, type
+
+    cd xonotic
+    ./all update -l best
+
+The `cd` line tells the Shell to go inside the `xonotic` directory, where `./all` is located. In the second line, the `-l best` part asks `./all` to pick the best available mirror. This step will download several gigabytes of data, so expect it to take a while.
+
+Step 3: compiling
+-----------------
+
+Compiling the game is quite simple. In your MinGW Shell, just type
+
+    ./all compile
+
+This will compile gmqcc (which is a compiler for the QuakeC language), then the game code using gmqcc, then the DarkPlaces engine.
+
+This step can take a few minutes, so be patient! When it’s over, check the last few lines to see if it reports any errors.
+
+Step 4: running the game!
+-------------------------
+
+To run the game, you have to use `./all` again:
+
+    ./all run
+
+If you ever need to start the game in windowed mode, you can launch it this way:
+
+    ./all run +vid_fullscreen 0
+
+By default, `./all` uses the SDL build (called `xonotic.exe` in releases). You can use the WGL build (`xonotic-wgl.exe`) like this:
+
+    ./all run wgl
+
+You will always need to use `./all` to launch the game. Do not forget that you need to be in the `xonotic` directory when you use the `./all` command. That means you have to type
+
+    cd xonotic
+
+when you start a MinGW Shell before updating, compiling, or running Xonotic.
+
+Keeping up to date
+------------------
+
+To keep up to date, all you need to do is repeat some of the steps above. More precisely, here is what you will usually type in a new MinGW Shell to update Xonotic to the latest git revision:
+
+    cd xonotic
+    ./all update
+    ./all compile
+
+You can optionally use this as the third line if the compilation does not work:
+
+    ./all compile -c
+
+This will remove the partially compiled files from the previous compiles. It has been known to resolve some errors before, but it can take a little longer to recompile everything.
+
+Getting help
+------------
+
+You can always ask for help in the [Xonotic forums](http://forums.xonotic.org), under the Help and Support section.
+
diff --git a/Hardware_Requirements.markdown b/Hardware_Requirements.markdown
deleted file mode 100644 (file)
index 8da7ae4..0000000
+++ /dev/null
@@ -1,231 +0,0 @@
-Hardware Requirements
-=====================
-
-Results from the-big-benchmark
-------------------------------
-
-This page lists benchmark results on various systems.
-
-Results are normally posted on the forums: http://forums.xonotic.org/showthread.php?tid=2562
-
-> To all users of git and autobuilds:
->
-> please update, and then run “the big benchmark” as described at [How to run the benchmark](Hardware_Requirements#how-to-run-the-benchmark)
->
-> Especially those of you who have performance problems are asked to run this. The test can, on older systems, take a few hours, so I’d recommend running it over night.
->
-> It will generate a log file. Please send me that log file (e.g. via forum PM) and also the following system details:
->
-> - system name
-> - CPU
-> - CPU clock frequency
-> - number of CPU cores
-> - RAM size
-> - operating system
-> - architecture (32bit or 64bit)
->
-> so I can add the data to the wiki page above. Alternatively, if you have editing permissions, you can add yourself to the wiki with the required data.
->
-> When we have this info, our goal is to describe hardware requirements of Xonotic. So please help us by providing benchmark results! Thanks.
-
----
-
-### Xonotic 0.6 / 0.7
-
-Note: The benchmark list is sorted by “normal” FPS as primary sort key, “med” FPS as secondary, and so on towards lower detail presets.
-
-| Username               | System                | CPU                                           | GHz       | Cores       | RAM       | GPU Vendor                            | GPU Card                                             | Graphics Driver                                      | OS                      | Arch        | omg     | low     | med     | normal   | high    | ultra   | ultimate   | Notes                                                                                     | Log Download                                                                       |
-| ---------------------- | --------------------- | --------------------------------------------- | --------- | ----------- | --------- | ------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ----------------------- | ----------- | ------- | ------- | ------- | -------- | ------- | ------- | ---------- | ----------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |
-| Mattias                | supercow              | Intel i5-3570K                                | 3.5       | 4           | 16G       | NVIDIA Corporation                    | GeForce GTX 670/PCIe/SSE2                            | 4.2.0 NVIDIA 302.17                                  | Linux                   | x86\_64     | 478     | 470     | 422     | 392      | 363     | 317     | 230        |                                                                                           | http://ompldr.org/vZjFpdw                                                          |
-| halogene               | Owl\_2.0              | Intel® Core™ i5-2500 CPU                      | 3.3       | 4           | 8G        | NVIDIA Corporation                    | GeForce GTX 660 Ti/PCIe/SSE2                         | 4.3.0 NVIDIA 325.15                                  | Linux                   | x86\_64     | 450     | 438     | 398     | 375      | 339     | 297     | 218        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=61831#pid61831               |
-| halogene               | Owl                   | Intel® Core™ i5-2500                          | 3.3       | 4           | 8G        | NVIDIA Corporation                    | GeForce GTX 560/PCIe/SSE2                            | 4.3.0 NVIDIA 313.30                                  | Linux                   | x86\_64     | 431     | 423     | 384     | 363      | 325     | 283     | 171        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=57664#pid57664               |
-| Ronan                  | desktop               | Core i7 920                                   | 3.36      | 4           | 24G       | NVIDIA Corporation                    | GeForce GTX 275/PCI/SSE2                             | 3.3.0 NVIDIA 285.05.09                               | Linux                   | x64         | 401     | 402     | 369     | 352      | 294     | 169     | 113        |                                                                                           | http://ompldr.org/vY2lzdw                                                          |
-| Ronan                  | desktop               | Core i7 920                                   | 3.36      | 4           | 24G       | NVIDIA Corporation                    | unknown board/PCI/SSE2                               | 4.2.0 NVIDIA 285.05.09                               | Linux                   | x64         | 396     | 402     | 364     | 344      | 300     | 186     | 144        | GeForce GTX 560 Ti 448 cores                                                              | http://ompldr.org/vY2lyaQ                                                          |
-| rainerzufalldererste   | RZDE-Win8             | Intel i7 2600K                                | 3.4       | 8           | 12G       | NVIDIA Corporation                    | GeForce GTX 560 Ti/PCIe/SSE2                         | 4.3.0                                                | Windows 8 Pro           | x64         | 348     | 335     | 332     | 309      | 271     | 179     | 155        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=57077#pid57077               |
-| tZork                  | ZEN                   | Intel i5-2500k                                | 4.6       | 4           | 4G        | NVIDIA Corporation                    | GeForce 9800 GT/PCI/SSE2                             | 3.3.0                                                | Windows 7               | x64         | 352     | 355     | 316     | 298      | 213     | 112     | 60         | apparently ran at 4.6, not 4.8                                                            | http://mapdl.xonotic.eu/tzork/the-big-benchmark-zen.zip                            |
-| tZork                  | ZEN                   | Intel i5-2500k                                | 4.6       | 4           | 4G        | ATI Technologies Inc.                 | AMD Radeon HD 6700 Series                            | 4.1.11399 Compatibility Profile Context              | Windows 7               | x64         | 355     | 330     | 310     | 297      | 265     | 205     | 155        | Radeon HD 6770                                                                            | http://ompldr.org/vY2s5cw                                                          |
-| Ronan                  | desktop               | Core i7 920                                   | 2.66      | 4           | 24G       | NVIDIA Corporation                    | unknown board/PCI/SSE2                               | 4.2.0 NVIDIA 285.05.09                               | Linux                   | x64         | 334     | 342     | 309     | 296      | 259     | 164     | 134        | GeForce GTX 560 Ti 448 cores                                                              | http://ompldr.org/vY2l0eA                                                          |
-| Ronan                  | desktop               | Core i7 920                                   | 3.36      | 4           | 24G       | NVIDIA Corporation                    | GeForce GTX 560 Ti/PCIe/SSE2                         | 4.2.0                                                | Windows 7 Pro           | x64         | 335     | 325     | 300     | 289      | 257     | 176     | 142        | GeForce GTX 560 Ti 448 cores                                                              | http://ompldr.org/vY3J0bA                                                          |
-| Heal                   | Heal                  | Core i7 2600k                                 | 3.4       | 4           | 8G        | NVIDIA Corporation                    | GeForce GTX 570/PCI/SSE2                             | 4.2.0                                                | Windows 7               | x64         | 339     | 330     | 302     | 288      | 265     | 175     | 141        |                                                                                           | http://ompldr.org/vY3FzMw                                                          |
-| Acidphase              | GameBeast             | AMD FX 8150                                   | 4.0       | 8 ?         | 16G       | NVIDIA Corporation                    | GeForce GTX 660 Ti FTW+                              | 4.x.y NVIDIA 325.15                                  | Linux                   | x86\_64     | 323     | 319     | 288     | 276      | 146     | 79      | 38         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=61944#pid61944               |
-| Grunt                  | tulkass               | Intel i5-2500                                 | 3.30      | 4           | 8G        | NVIDIA Corporation                    | GeForce GT 440/PCI/SSE2                              | 4.2.0 NVIDIA 290.10                                  | Linux                   | x64         | 326     | 311     | 286     | 239      | 167     | 117     | 58         |                                                                                           | http://rghost.net/36234085                                                         |
-| Lee\_Stricklin         | lee-desktop           | AM2+ Socket AMD Phenom II X4                  | 3         | 4           | 4G        | NVIDIA Corporation                    | GeForce 9800 GTX+/PCI/SSE2                           | 3.2.0 NVIDIA 195.36.24                               | Linux                   | x64         | 299     | 293     | 261     | 250      | 225     | 118     | 76         |                                                                                           | http://ompldr.org/vY2wzcw                                                          |
-| Soelen                 | Desktop               | Intel Core i7 CPU 930                         | 2.8       | 4           | 32G       | NVIDIA Corporation                    | GeForce GTX 480/PCI/SSE2                             | 3.2.0                                                | Windows 7               | x64         | 285     | 280     | 257     | 246      | 199     | 135     | 108        |                                                                                           | http://ompldr.org/vY2x4eA                                                          |
-| edh                    | SG03                  | Core 2 Duo E8200                              | 2.66      | 2           | 2G        | NVIDIA Corporation                    | GeForce 9600 GT/PCI/SSE2                             | 3.3.0 NVIDIA 290.10                                  | Linux                   | x64         | 292     | 287     | 255     | 236      | 187     | 82      | 42         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=35154#pid35154               |
-| halogene               | Owl                   | Intel® Core™ i5-2500                          | 3.3       | 4           | 8G        | NVIDIA Corporation                    | GeForce GTX 560/PCIe/SSE2                            | 4.3.0                                                | Windows 7               | x64         | 284     | 277     | 258     | 232      | 215     | 202     | 142        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=57664#pid57664               |
-| zykure                 | nubase                | Intel Xeon E5420                              | 2.5       | 8           | 16G       | NVIDIA Corporation                    | Quadro FX3700/PCIe/SSE2                              | 3.3.0 Nvidia 295.20                                  | Linux                   | x64         | 283     | 255     | 239     | 227      | 193     | 84      | 50         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=35646#pid35646               |
-| rocknroll237           | desktop               | Intel i7 960                                  | 3.2       | 4           | 6G        | ATI Technologies Inc.                 | ASUS ARES                                            | 4.1.11161                                            | Windows 7               | x64         | 270     | 250     | 228     | 215      | 194     | 130     | 117        |                                                                                           |                                                                                    |
-| tZork                  | mediabox              | Intel i3-2100                                 | 3.1       | 2           | 8G        | ATI Technologies Inc.                 | AMD Radeon HD 6700 Series                            | 4.1.11399 Compatibility Profile Context              | Windows 7               | x64         | 259     | 237     | 224     | 212      | 183     | 130     | 116        | Radeon HD 6770                                                                            | http://mapdl.xonotic.eu/tzork/the-big-benchmark3.zip                               |
-| Halbyrd                | WisdomLikeSilence     | Intel Core i5-2300                            | 2.3       | 4           | 8G        | ATI Technologies Inc.                 | AMD Radeon HD 6900 Series                            | 4.2.11762 Compatibility Profile Context              | Windows 7               | x64         | 249     | 234     | 219     | 210      | 188     | 152     | 140        | Radeon HD 6970                                                                            | http://forums.xonotic.org/showthread.php?tid=2562&pid=51166#pid51166               |
-| halogene               | MacBookPro            | Intel® Core™ i7-2635QM                        | 2.0       | 4           | 8G        | ATI Technologies Inc.                 | AMD Radeon HD 7400M Series                           | 4.2.11903 Compatibility Profile Context              | Linux                   | x86\_64     | 282     | 263     | 229     | 200      | 111     | 72      | 35         | MacBook Pro 8.1 with proprietary driver                                                   | http://forums.xonotic.org/showthread.php?tid=2562&pid=57664#pid57664               |
-| halogene               | McArch                | Intel® Core™ i7-2675QM                        | 2.2       | 4           | 8G        | X.Org (ATI)                           | Gallium 0.4 on AMD TURKS (6750M)                     | 3.0 Mesa 10.2.6                                      | Linux                   | x86\_64     | 249     | 248     | 225     | 213      | 143     | 88      | 54         | MacBook Pro 8.2 with AMD GPU / OSS driver                                                 | http://forums.xonotic.org/attachment.php?aid=1316                                  |
-| ferndan                | -                     | AMD APU A8-5600K                              | 3.6       | 4           | 8G        | ATI Technologies Inc.                 | AMD Radeon 7650D                                     | 4.2.11931 Compatibility Profile Context              | Linux                   | x86\_64     | 238     | 227     | 209     | 198      | 141     | 95      | 62         | GPU integrated on APU                                                                     | http://forums.xonotic.org/showthread.php?tid=2562&pid=53766#pid53766               |
-| SavageX                | desktop               | Phenom II X4 945                              | 3.0       | 4           | 8G        | ATI Technologies Inc.                 | AMD Radeon HD 5670                                   | 4.1.11005 Compatibility Profile Context              | Linux                   | x64         | 249     | 232     | 210     | 195      | 168     | 103     | 73         |                                                                                           | http://ompldr.org/iY2lwYg                                                          |
-| qorl                   | -                     | AMD Phenom II                                 | 3.4       | 4           | 8G        | ATI Technologies Inc.                 | AMD Radeon HD 6850                                   | 6.14.10.12002                                        | Windows 7 Ultimate      | x64         | 239     | 221     | 201     | 189      | 171     | 109     | 100        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=56376#pid56376               |
-| rafallus               | desktop-c2d           | Core 2 Duo E8400                              | 3         | 2           | 4G        | ATI Technologies Inc.                 | ATI Radeon HD 4800 Series                            | 3.2.9704 Compatibility Profile Context               | Windows XP              | x64         | 230     | 215     | 197     | 189      | 167     | 107     | 97         |                                                                                           | http://forums.xonotic.org//showthread.php?tid=2562&pid=34192#pid34192              |
-| Halbyrd                | Xenoglossicist        | Intel Core i5 2300                            | 2.8       | 4           | 16G       | ATI Technologies Inc.                 | MD Radeon HD 6900 Series                             | 4.2.12217 Compatibility Profile Context 12.104.0.0   | Windows 7               | x64         | 228     | 216     | 200     | 188      | 174     | 154     | 120        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=59121#pid59121               |
-| divVerent              | grawp                 | Athlon II X4 620                              | 2.6       | 4           | 4G        | NVIDIA Corporation                    | GeForce GTS 250/PCI/SSE2                             | 3.3.0 NVIDIA 290.10                                  | Linux                   | x64         | 219     | 215     | 196     | 186      | 169     | 103     | 66         |                                                                                           | http://ompldr.org/vY2luNQ                                                          |
-| Maddin                 | maddinsrechner        | AMD Athlon™ II X3 455 Processor               | 3.3       | 3           | 8G        | NVIDIA Corporation                    | GeForce GTX 660/PCIe/SSE2/3DNOW!                     | 4.3.0 NVIDIA 313.30                                  | Linux                   | x86         | 214     | 216     | 195     | 186      | 172     | 154     | 114        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=60782#pid60782               |
-| Sless                  | Withers               | i7 920                                        | 2.66      | 4           | 18G       | ATI Technologies Inc.                 | AMD Radeon HD 6900 Series                            | 4.2.11399 Compatibility Profile Context              | Windows 7               | x64         | 229     | 213     | 196     | 185      | 168     | 108     | 107        |                                                                                           | http://dl.dropbox.com/u/51677128/misc/the-big-benchmark-Withers.log                |
-| halogene               | hparch                | Intel® Core™ i5-5200U CPU                     | 2.2       | 4           | 8G        | Intel Open Source Technology Center        | Mesa DRI Intel® HD Graphics 5500 (Broadwell GT2) | 3.0 Mesa 10.5.7    | Linux     | x64         | 225  | 206 | 199 | 183 | 126 | 101 | 73 | HP Elitebook Folio 1040 | http://forums.xonotic.org/showthread.php?tid=2562&pid=72474#pid72474 |
-| naryl                  | naryl-desktop         | Intel® Core™ i5-3570K CPU                     | 3.4       | 4           | 16G       | Tungsten Graphics, Inc                | Mesa DRI Intel® Ivybridge Desktop                    | 3.0 Mesa 8.0.4                                       | Linux                   | x64         | 281     | 248     | 217     | 168      | 108     | 76      | 37         |                                                                                           | http://ompldr.org/vZzFidg                                                          |
-| monad                  | desktop               | AMD Athlon™ II X2 250                         | 3         | 2           | 2G        | NVIDIA Corporation                    | GeForce GT 220/PCI/SSE2/3DNOW!                       | 3.3.0 NVIDIA 290.10                                  | Linux                   | x86         | 196     | 198     | 175     | 165      | 132     | 62      | 32         |                                                                                           |                                                                                    |
-| freefang               | Desktop               | Core 2 Quad Q9550                             | 2.83      | 4           | 4G        | NVIDIA Corporation                    | GeForce GTS 250/PCI/SSE2                             | 3.3.0                                                | Windows Vista           | x86         | 166     | 166     | 152     | 146      | 129     | 85      | 65         |                                                                                           | http://ompldr.org/vY2pnMg                                                          |
-| rafallus               | desktop-amd-7770      | Athlon X2 7750BE                              | 2.7       | 2           | 4G        | ATI Technologies Inc                  | ATI Radeon HD 7770                                   | Catalyst 12.8                                        | Windows XP              | x86         | 184     | 167     | 151     | 142      | 121     | 80      | 73         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=52824#pid52824               |
-| rafallus               | desktop-sb            | Intel Celeron G530                            | 1.6       | ?           | 8G        | ATI Technologies Inc                  | ATI Radeon HD 7770                                   | Catalyst 10.8                                        | Windows 7               | x64         | 180     | 153     | 137     | 133      | 125     | 110     | 87         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=52824#pid52824               |
-| divVerent              | grawp                 | Athlon II X4 620                              | 2.6       | 4           | 4G        | nouveau                               | Gallium 0.4 on NV92                                  | 2.1 Mesa 7.11.2                                      | Linux                   | x64         | 160     | 152     | 141     | 127      | 91      | 72      | 53         | GTS 250                                                                                   | http://ompldr.org/vY2o1dw                                                          |
-| divVerent              | nb-04                 | Intel® Core™2 Duo CPU P8700                   | 2.53      | 2           | 4G        | NVIDIA Corporation                    | GeForce 9600M GS/PCI/SSE2                            | 3.3.0 NVIDIA 290.10                                  | Linux                   | x64         | 196     | 183     | 161     | 125      | 96      | 39      | 17         |                                                                                           | http://ompldr.org/vY2lxeQ                                                          |
-| nyov                   | ti                    | Athlon 64 X2 6000+                            | 3.0       | 2           | 2G        | ATI Technologies Inc.                 | AMD Radeon HD 6970                                   | 4.2.11318 Compatibility Profile Context              | Linux                   | x64         | 162     | 149     | 133     | 123      | 105     | 69      | 60         | windowed mode, git                                                                        | http://ompldr.org/vY2l3bg                                                          |
-| halogene               | mcbuntu               | Intel® Core™ i7-2675QM                        | 2.2       | 4           | 8G        | Intel Open Source Technology Center   | Mesa DRI Intel® Sandybridge Mobile                   | 3.0 Mesa 9.1.3                                       | Linux                   | x86\_64     | 194     | 178     | 159     | 122      | 83      | 54      | 35         | MacBook Pro 8,2 with integrated GPU                                                       | http://forums.xonotic.org/showthread.php?tid=2562&pid=60061#pid60061               |
-| zgreg                  | -                     |                                               |           |             |           | X.org                                 | Gallium 0.4 on AMD TURKS                             | 3.0 Mesa 9.2.0-devel                                 | Linux                   | x64         | 152     | 142     | 131     | 121      | 104     | 86      | 58         | R600\_DEBUG=sb enabled (shader optimizer) on AMD Radeon HD 6670                           | http://greg.kinoho.net/big-benchmark.tar.xz                                        |
-| adem                   | home pc               | Intel Core i5-2320                            | 3.0       | 4           | 8G        | Intel                                 | Intel® HD Graphics Family                            | 3.1.0 - Build 8.15.10.2622                           | Windows 7               | x64         | 176     | 154     | 136     | 118      | 81      | 50      | 21         | Sandy Bridge                                                                              | http://forums.xonotic.org/showthread.php?tid=2562&pid=35348#pid35348               |
-| kamp                   |                       | Intel® Core™ i5-3230M                         | 2.6       | 4           | 6G        | Intel                                 | Intel HD 4000                                        |                                                      | Linux                   | x86\_64     | 166     | 137     | 130     | 116      | 93      | 66      | 47         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=60777#pid60777               |
-| Maddin                 | desktop               | Athlon 64 X2 4800+                            | 2.2       | 2           | 2G        | NVIDIA Corporation                    | GeForce GTS 250/PCI/SSE2/3DNOW!                      | 3.3.0 NVIDIA 260.19.06                               | Linux                   | x86         | 135     | 135     | 121     | 116      | 106     | 65      | 44         |                                                                                           | http://dl.dropbox.com/u/31065422/Xonotic/misc/the-big-benchmark-maddin.log         |
-| cortez                 | desktop               | Core 2 Quad Q6600                             | 2         | 4           | 4G        | NVIDIA Corporation                    | GeForce GTX 260/PCI/SSE2                             | 3.3.0                                                | Windows 7               | x86         | 121     | 126     | 114     | 111      | 106     | 65      | 59         |                                                                                           | http://ompldr.org/vY21qeg                                                          |
-| tZork                  | SPAKULATORN           | Intel Core i5 CPU M 450                       | 2.4       | 2           | 6G        | ATI Technologies Inc.                 | ATI Mobility Radeon HD 5470                          | 3.2.9751 Compatibility Profile Context               | Windows 7               | x64         | 167     | 152     | 136     | 107      | 70      | 51      | 29         |                                                                                           | http://ompldr.org/vY21keA                                                          |
-| halogene               | whisper               | AMD Athlon™ 64 X2 Dual Core Processor 3800+   | 2.0       | 2           | 1G        | NVIDIA Corporation                    | GeForce 7950 GT/PCIe/SSE2                            | 2.1.2 NVIDIA 304.88                                  | Linux                   | x86\_64     | 130     | 124     | 112     | 105      | 90      | 75      | 46         | after tweaking some desktop effects                                                       | http://forums.xonotic.org/showthread.php?tid=2562&pid=60299#pid60299               |
-| halogene               | whisper               | AMD Athlon™ 64 X2 Dual Core Processor 3800+   | 2.0       | 2           | 1G        | NVIDIA Corporation                    | GeForce 7950 GT/PCIe/SSE2                            | 2.1.2 NVIDIA 304.88                                  | Linux                   | x86\_64     | 126     | 121     | 107     | 103      | 86      | 68      | 41         | OUTDATED, see entry for “whisper” above                                                   | http://forums.xonotic.org/showthread.php?tid=2562&pid=60057#pid60057               |
-| Unknown[NF]            | Xenon                 | Phenom X6 1090T                               | 3.2       | 6           | 16G       | NVIDIA Corporation                    | GeForce 8800 GTX/PCIe/SSE2                           | 3.3.0                                                | Windows 8               | X64         | 100     | 102     | 96      | 94       | 86      | 68      | 53         | Consumer Preview 296.17 Driver                                                            | http://ompldr.org/vY3o4dg                                                          |
-| Mirio                  | nn                    | Athlon 64 X2 3800+                            | 2.0       | 2           | 1G        | NVIDIA Corporation                    | GeForce 9800 GT/PCI/SSE2/3DNOW!                      | 3.1.0                                                | Windows XP (Home)       | x86         | 106     | 105     | 96      | 92       | 86      | 55      | 45         |                                                                                           | http://ompldr.org/vY2lydA                                                          |
-| zgreg                  | -                     |                                               |           |             |           | ATI Technologies Inc.                 | AMD Radeon HD 6670                                   | 4.2.12217 Compatibility Profile Context 12.104.0.0   | Windows 7               | x64         | 105     | 89      | 91      | 83       | 71      | 67      | 51         |                                                                                           | http://greg.kinoho.net/big-benchmark.tar.xz                                        |
-| zykure                 | supernova             | Intel i3-2310M                                | 2.1       | 4           | 4G        | Intel Open Source Technology Center   | Mesa DRI Intel SandyBridge Mobile                    | 3.0 Mesa 9.0-devel                                   | Linux                   | x64         | 126     | 121     | 108     | 82       | 54      | 35      | 17         | using updated Mesa drivers from https://launchpad.net/\~oibaf/+archive/graphics-drivers   | http://forums.xonotic.org/showthread.php?tid=2562&pid=49042#pid49042               |
-| freefang               | Laptop                | Core 2 Duo T9600                              | 2.8       | 2           | 4G        | NVIDIA Corporation                    | Quadro FX 770M/PCI/SSE2                              | 3.3.0                                                | Vista                   | x86         | 145     | 106     | 102     | 82       | 85      | 37      | 18         |                                                                                           | http://ompldr.org/vY2p4dg                                                          |
-| Maddin                 | desktop               | Athlon 64 X2 4800+                            | 2.2       | 2           | 2G        | NVIDIA Corporation                    | GeForce GTS 250/PCI/SSE2/3DNOW!                      | 3.3.0                                                | Windows XP              | x86         | 83      | 113     | 103     | 80       | 92      | 60      | 48         |                                                                                           | http://dl.dropbox.com/u/31065422/Xonotic/misc/the-big-benchmark-maddin-winxp.log   |
-| theShadow              | Macbook Pro           | Intel Core i7                                 | 2.66      | 1           | 8G        | NVIDIA Corporation                    | NVIDIA GeForce GT 330M OpenGL Engine                 | 2.1 NVIDIA-7.12.9                                    | OS X Lion               | x64         | 194     | 82      | 71      | 68       | 58      | 43      | 36         | windowed                                                                                  | http://www.mediafire.com/?kmogs5aykcu4mpa                                          |
-| zykure                 | supernova             | Intel i3-2310M                                | 2.1       | 4           | 4G        | Tungsten Graphics, Inc                | Mesa DRI SandyBridge                                 | 3.0 Mesa 8.1-devel                                   | Linux                   | x64         | 119     | 115     | 94      | 67       | 42      | 25      | 13         | using updated Mesa drivers from https://launchpad.net/\~oibaf/+archive/graphics-drivers   | http://forums.xonotic.org/showthread.php?tid=2562&pid=35646#pid35646               |
-| rafallus               | desktop-amd           | Athlon X2 7750BE                              | 2.7       | 2           | 4G        | NVIDIA Corporation                    | GeForce 7300 GT/PCI/SSE2/3DNOW!                      | 2.0.3                                                | Windows XP              | x86         | 120     | 103     | 94      | 67       | 56      | 32      | 13         |                                                                                           | http://forums.xonotic.org//showthread.php?tid=2562&pid=34192#pid34192              |
-| zykure                 | supernova             | Intel i3-2310M                                | 2.1       | 4           | 4G        | Tungsten Graphics, Inc                | Mesa DRI SandyBridge                                 | 2.1 Mesa 7.11                                        | Linux                   | x64         | 107     | 103     | 83      | 59       | 39      | 25      | 13         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=35646#pid35646               |
-| Ronan                  | lenovo-x121e          | Core i3 2357M                                 | 1.3       | 2           | 8G        | Intel                                 | Intel® HD Graphics 3000                              | 3.1.0 - Build 8.15.10.2559                           | Windows 7               | x64         | 79      | 67      | 61      | 58       | 49      | 34      | 18         |                                                                                           | http://ompldr.org/vY2l0eA                                                          |
-| edh                    | SN54G                 | Athlon XP 2400+                               | 2.0       | 1           | 1G        | NVIDIA Corporation                    | GeForce 6600 GT/AGP/SSE/3DNOW!                       | 2.1.1 NVIDIA 100.14.11                               | Linux                   | x86         | 67      | 63      | 57      | 49       | 17      | 9       | 5          |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=35238#pid35238               |
-| SavageX                | nettop                | AMD E-350                                     | 1.6       | 2           | 4G        | ATI Technologies Inc.                 | AMD Radeon HD 6350                                   | 4.1.11005 Compatibility Profile Context              | Linux                   | x64         | 58      | 54      | 47      | 45       | 34      | 25      | -          |                                                                                           | http://ompldr.org/iY2lzcg                                                          |
-| ItsMe                  | Laptop                | Intel Core™2 Duo CPU T8100                    | 2.1       | 2           | 4G        | NVIDIA Corporation                    | GeForce 8400M GS/PCI/SSE2                            | 3.3.0 NVIDIA 290.10                                  | Linux                   | x64         | 74      | 67      | 59      | 43       | 33      | 13      | 5          |                                                                                           | http://ompldr.org/vY2tzdA/                                                         |
-| halogene               | FortKnox              | Intel® Atom™ CPU 330                          | 1.6       | 2           | 2G        | NVIDIA Corporation                    | ION/integrated/SSE2                                  | 3.3.0 NVIDIA 313.30                                  | Linux                   | x86\_64     | 49      | 49      | 45      | 43       | 35      | 16      | 7          |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=57664#pid57664               |
-| divVerent              | grawp                 | Athlon II X4 620                              | 2.6       | 4           | 4G        | ATI Technologies Inc.                 | ATI Radeon HD 4200                                   | 3.3.11399 Compatibility Profile Context              | Linux                   | x64         | 66      | 60      | 55      | 42       | 32      | 19      | 10         |                                                                                           | http://ompldr.org/vY2pmNQ                                                          |
-| naryl                  | naryl-laptop          | Core i3-2310M                                 | 2.10      | 2           | 1.8G      | Tungsten Graphics, Inc                | Mesa DRI Intel® Sandybridge Mobile                   | 2.1 Mesa 7.11.2                                      | Linux                   | x64         | 58      | 56      | 51      | 40       | 29      | 22      | 12         |                                                                                           | http://ompldr.org/vY2owZA                                                          |
-| divVerent              | nb-04                 | Intel® Core™2 Duo CPU P8700                   | 2.53      | 2           | 4G        | nouveau                               | Gallium 0.4 on NV96                                  | 2.1 Mesa 7.11.2                                      | Linux                   | x64         | 51      | 49      | 46      | 37       | 29      | 23      | 15         | GeForce 9600M                                                                             | http://ompldr.org/vY2lxeQ                                                          |
-| edh                    | lastdecade/1          | Sempron 2800+                                 | 2.0       | ?           | 1G        | ATI Technologies Inc.                 | ATI Radeon 9550                                      | 2.1.8545 Release                                     | Windows XP Pro          | x86         | 67      | 63      | 52      | 24       | 19      | -       | -          | graphical issues, no offset mapping                                                       | http://forums.xonotic.org/showthread.php?tid=2562&pid=55084#pid55084               |
-| Ronan                  | laptop-2007           | Core Duo T2600                                | 2.16      | 2           | 3G        | ATI Technologies Inc                  | ATI MOBILITY RADEON X2300                            | 2.1.8545 Release                                     | Windows 7               | x86         | 38      | 35      | 32      | 24       | -       | -       | -          | Legacy modded drivers                                                                     | http://ompldr.org/vY2l3aw                                                          |
-| Sless                  | Optidrex 760          | Intel Core 2 Duo E7400                        | 2.8       | 2           | 2G        | Intel                                 | Intel Eaglelake                                      | 2.0.0 - Build 7.15.10.1545                           | Windows Vista           | x86         | 37      | 23      | 21      | 23       | 10      | 11      | 6          | Dell Optiplex 760                                                                         | http://dl.dropbox.com/u/51677128/misc/the-big-benchmark\_760.log                   |
-| edh                    | lastdecade/2          | Athlon XP 2000+ Palomino                      | 1.66      | ?           | 768M      | NVIDIA Corporation                    | Geforce FX5900 128Mb (BIOS modded to FX5950 Ultra)   | 2.0.3                                                | Windows XP Pro          | x86         | 50      | 48      | 41      | 21       | 15      | -       | -          | no offset mapping                                                                         | http://forums.xonotic.org/showthread.php?tid=2562&pid=55084#pid55084               |
-| edh                    | lastdecade/6          | Athlon XP 2400+ Thoroughbred                  | 2.025     | ?           | 768M      | NVIDIA Corporation                    | Radeon 9550 (BIOS modded to 9600, OC’ed)             | 2.1 Mesa 9.0.1                                       | Linux                   | x86         | 56      | 45      | 38      | 21       | 16      | -       | -          | no offset mapping                                                                         | http://forums.xonotic.org/showthread.php?tid=2562&pid=55084#pid55084               |
-| edh                    | lastdecade/3          | Athlon XP 2000+ Palomino                      | 1.66      | ?           | 768M      | NVIDIA Corporation                    | Geforce FX5900 128Mb (BIOS modded to FX5950 Ultra)   | 2.1.2 NVIDIA 173.14.36                               | Linux                   | x86         | 52      | 48      | 41      | 20       | 15      | -       | -          | no offset mapping                                                                         | http://forums.xonotic.org/showthread.php?tid=2562&pid=55084#pid55084               |
-| freefang               | OldMac                | Intel Core 2 Duo                              | 2.16      | 2           | 2G        | NVIDIA Corporation                    | NVIDIA GeForce 7300 GT OpenGL Engine                 | 2.1 NVIDIA-1.6.36                                    | OS X 10.6               | x86         | 59      | 57      | 46      | 18       | 7       | 6       | 4          |                                                                                           | http://ompldr.org/vY2xpYg                                                          |
-| Ronan                  | desktop               | Core i7 920                                   | 3.36      | 4           | 24G       | -                                     | -                                                    | -                                                    | Linux                   | x64         | 71      | 48      | 40      | 16       | 15      | a)      | a)         | +vid\_soft 1                                                                              | http://ompldr.org/vY21mZg                                                          |
-| gamingwithnetbooks     | netbook-LT4004u       | Intel Atom N2600                              | 1.6       | 4           | 2G        | Intel                                 | Intel GMA 3600                                       | 3.0 Intel 8.14.8.1091                                | Windows 7 Starter       | x86         | 34      | 31      | 26      | 14       | 8       | -       | -          | Benchmark ran at 1024x768                                                                 | http://forums.xonotic.org/showthread.php?tid=2562&pid=55344#pid55344               |
-| Sless                  | FUmachine             | Athlon 64 X2 5000+                            | 2.66      | 2           | 2G        | NVIDIA Corporation                    | GeForce 6100 nForce 405/PCI/SSE2/3DNOW!              | 2.0.3                                                | Windows XP              | x86         | 20      | 18      | 16      | 10       | 8       | -       | -          |                                                                                           | http://dl.dropbox.com/u/51677128/misc/the-big-benchmark\_FUmachine.log             |
-| divVerent              | grawp                 | Athlon II X4 620                              | 2.6       | 4           | 4G        | -                                     | -                                                    | -                                                    | Linux                   | x64         | 34      | 23      | 18      | 8        | 7       | a)      | a)         | +vid\_soft 1                                                                              | http://ompldr.org/vY2puZg                                                          |
-| matthiaskrgr           | t60                   | Intel Core2 CPU T5600                         | 1.83      | 2           | 3G        | X.Org R300 Project                    | Gallium 0.4 on ATI RV515                             | 2.1 Mesa 7.11.2                                      | Linux                   | x86         | 14      | 12      | 11      | 8        | 4       | 3       | 2          |                                                                                           | http://ompldr.org/vY21keQ                                                          |
-| Ronan                  | laptop-2007           | Core Duo T2600                                | 2.16      | 2           | 3G        | ATI Technologies Inc                  | ATI MOBILITY RADEON X2300                            | 2.1.8545 Release                                     | Windows 7               | x86         | 103     | 77      | 66      | b)       | b)      | b)      | b)         | +vid\_gl20 0                                                                              | http://ompldr.org/vY21mbA                                                          |
-| Sless                  | Optidrex 755          | Intel Core 2 Duo E6550                        | 2.33      | 2           | 2G        | Intel                                 | Intel Bear Lake B                                    | 1.4.0 - Build 7.14.10.4864                           | Windows XP              | x86         | 65      | 33      | 26      | b)       | b)      | b)      | b)         | Dell Optiplex 755                                                                         | http://dl.dropbox.com/u/51677128/misc/the-big-benchmark\_755.log                   |
-| edh                    | lastdecade/5          | Athlon XP 2000+ Palomino                      | 1.66      | ?           | 768M      | NVIDIA Corporation                    | Geforce4 MX440                                       | 1.5.7                                                | Windows XP Pro          | x86         | 55      | 35      | 25      | -        | -       | -       | -          | no OpenGL 2.0                                                                             | http://forums.xonotic.org/showthread.php?tid=2562&pid=55084#pid55084               |
-| divVerent              | grawp                 | Athlon II X4 620                              | 2.6       | 4           | 4G        | X.Org                                 | Gallium 0.4 on AMD RS880                             | 2.1 Mesa 7.11.2                                      | Linux                   | x64         | 43      | 30      | 23      | b)       | b)      | b)      | b)         | Radeon HD 4200, +vid\_gl20 0                                                              | http://ompldr.org/vY2pzZQ                                                          |
-| Sless                  | Kiste1                | Intel Core 2 T5500                            | 1.66      | 2           | 1G        | Intel                                 | Intel 945GM                                          | 1.4.0 - Build 7.14.10.4926                           | Windows XP              | x86         | 47      | 22      | 17      | b)       | b)      | b)      | b)         |                                                                                           | http://dl.dropbox.com/u/51677128/misc/the-big-benchmark-KISTE1.log                 |
-| Sless                  | Optidrex280           | Pentium 4                                     | 2.8       | 1           | 512M      | Intel                                 | Intel 915G                                           | 1.4.0 - Build 4.14.10.3889                           | Windows XP              | x86         | 46      | 21      | 14      | b)       | b)      | b)      | b)         | Dell Optiplex GX280                                                                       | http://dl.dropbox.com/u/51677128/misc/the-big-benchmark\_280.log                   |
-| edh                    | SN54G                 | Athlon XP 2400+                               | 2.0       | 1           | 1G        | NVIDIA Corporation                    | GeForce FX 5600/AGP/SSE/3DNOW!                       | 2.1.1 NVIDIA 100.14.11                               | Linux                   | x86         | 57      | 18      | 14      | -        | -       | -       | -          |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=35285#pid35285               |
-| divVerent              | grawp                 | Athlon II X4 620                              | 2.6       | 4           | 4G        | X.Org                                 | Gallium 0.4 on AMD RS880                             | 2.1 Mesa 7.11.2                                      | Linux                   | x64         | 13      | 11      | 11      | -        | -       | -       | -          | Radeon HD 4200                                                                            | http://ompldr.org/vY2pjNw                                                          |
-| Mirio                  | laptop                | Mobile Intel® Pentium® 4                      | 2.80      | 1           | 512M      | NVIDIA Corporation                    | GeForce FX Go53xx Series/AGP/SSE2                    | 1.4.0                                                | Windows XP (Home)       | x86         | 66      | 20      | 10      | b)       | b)      | b)      | b)         |                                                                                           | http://ompldr.org/vY2l4NA                                                          |
-| divVerent              | 0214/38ff/fea7/a2f9   | AMD Opteron™ Processor 246                    | 2         | 1           | 1G        | NVIDIA Corporation                    | GeForce2 MX/MX 400/PCI/SSE2                          | 1.5.8 NVIDIA 96.43.20                                | Linux                   | x86\_64     | 30      | 10      | 7       | b)       | b)      | b)      | b)         |                                                                                           | http://ompldr.org/vZDVvYQ                                                          |
-| edh                    | unplayably-old        | Intel Pentium 3                               | 0.55      | 1           | 320M      | NVIDIA Corporation                    | GeForce4 MX 440/AGP/SSE                              | 1.5.8 NVIDIA 96.43.23                                | Linux                   | x86\_64     | 16      | 9       | 6       | -        | -       | -       | -          | no OpenGL 2.0                                                                             | http://forums.xonotic.org/showthread.php?tid=2562&pid=56818#pid56818               |
-| divVerent              | whitenot              | Intel® Celeron® M processor                   | 0.63      | 1           | 2G        | Tungsten Graphics, Inc                | Mesa DRI Intel® 915GM x86/MMX/SSE2                   | 1.4 Mesa 7.11.2                                      | Linux                   | x86         | 19      | 7       | 3       | b)       | b)      | b)      | b)         | Eee PC 701, 800x480                                                                       | http://ompldr.org/vY21jNg                                                          |
-| edh                    | LianLi                | Pentium 3 Tualatin 256Kb                      | 1.0       | 2           | 384M      | nouveau                               | Gallium 0.4 on NV31                                  | 1.5 Mesa 7.11.2                                      | Linux                   | x86         | 20      | 13      | -       | b)       | b)      | b)      | b)         | Geforce FX5600 256Mb                                                                      | http://forums.xonotic.org/showthread.php?tid=2562&pid=35521#pid35521               |
-| cortez                 | netbook               | Intel Atom                                    | 1.6       | 1           | 1G        | Intel                                 | Intel 945GM                                          | 1.4.0 - Build 7.14.10.4926                           | Windows XP              | x86         | 18      | 8       | -       | b)       | b)      | b)      | b)         | Acer Aspire One, 640x480                                                                  | http://ompldr.org/vY2s0Zw                                                          |
-| edh                    | lastdecade/4          | Athlon XP 2000+ Palomino                      | 1.66      | ?           | 768M      | NVIDIA Corporation                    | Geforce FX5900 128Mb (BIOS modded to FX5950 Ultra)   | 1.5 Mesa 9.0.1                                       | Linux                   | x86         | 49      | -       | -       | -        | -       | -       | -          | Nouveau driver, graphical errors after “omg”                                              | http://forums.xonotic.org/showthread.php?tid=2562&pid=55084#pid55084               |
-| edh                    | p3-550                | Pentium 3                                     | 0.55      | 1           | 320M      | Tungsten Graphics, Inc.               | Mesa DRI R200 (RV250 4966) x86/MMX/SSE TCL DRI2      | 1.3 Mesa 7.11.2                                      | Linux                   | x86         | 11      | -       | -       | b)       | b)      | b)      | b)         | Radeon 9000, crashed at low                                                               | http://forums.xonotic.org/showthread.php?tid=2562&pid=35179#pid35179               |
-| edh                    | Craptop               | Via C3-2 ‘Nehemiah’                           | 1.2       | 1           | 256M      | VIA Technology                        | Mesa DRI CastleRock (CLE266) x86/MMX/SSE             | 1.2 Mesa 7.11.2                                      | Linux                   | x86         | 9       | -       | -       | b)       | b)      | b)      | b)         | Display errors at low, and about 0.1fps                                                   | http://forums.xonotic.org/showthread.php?tid=2562&pid=35646#pid35646               |
-| ---------------------- | --------------------- | --------------------------------------------- | --------- | ----------- | --------- | ------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ----------------------- | ----------- | ------- | ------- | ------- | -------- | ------- | ------- | ---------- | ----------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |
-| Username               | System                | CPU                                           | GHz       | Cores       | RAM       | GPU Vendor                            | GPU Card                                             | Graphics Driver                                      | OS                      | Arch        | omg     | low     | med     | normal   | high    | ultra   | ultimate   | Notes                                                                                     | Log Download                                                                       |
-
-**Result notes:**
- * a) vid\_soft is disqualified at ultra and above for lack of support of: offsetmapping, reliefmapping, postprocessing
- * b) the OpenGL 1.x renderer is disqualified at normal and above for lack of support of: deluxemapping, gloss, offsetmapping, reliefmapping, postprocessing
-
-**Benchmark results :**
- * 2013-08-28:  
-   ![Benchmark results](assets/images/benchmark.png)
-
-How to run the benchmark
-------------------------
-
-First turn off any screen savers you may be running.
-
-Then, in misc/tools/the-big-benchmark/, run the-big-benchmark.sh or the-big-benchmark.bat depending on OS. Wait for about 1 hour, then - if it’s not done yet - you are allowed to quit the process by entering “quit” on the game console. The results will be saved in data/the-big-benchmark.log. Upload this file, and analyze it and enter the values here!
-
-The lists are sorted by the “normal” column in descending order, where a - (test not been done due to taking too long) is still better than a disqualification. In case of equality, further sort criteria are chosen to the left.
-
-The fields have the following meanings and are extracted as follows:
-
-#### Username
-
-The user name on the tracker here.
-
-#### System
-
-A host identifier (e.g. host name)
-
-#### CPU
-
-The CPU in the system. On Linux, get this from `/proc/cpuinfo`.
-
-#### GHz
-
-The CPU clock frequency.
-
-#### Cores
-
-The number of CPU cores in the system. On Linux, get this from `/proc/cpuinfo`.
-
-#### RAM
-
-The total physical memory of the system. On Linux, get this from `free`.
-
-#### Vendor
-
-The vendor string (typically graphics card vendor). Get this from the-big-benchmark.log, as in:
-
-    GL_VENDOR: NVIDIA Corporation
-
-#### Card
-
-The renderer string (typically graphics card name). Get this from the-big-benchmark.log, as in:
-
-    GL_RENDERER: GeForce GTS 250/PCI/SSE2
-
-Sometimes this just lists the series of the chipset, and not the exact chipset number. In that case, please write the proper chipset number in the Notes column!
-
-#### Driver
-
-The version string (typically driver version). Get this from the-big-benchmark.log, as in:
-
-    GL_VERSION: 3.3.0 NVIDIA 290.10
-
-#### OS
-
-The operating system. One of Windows XP, Vista, Windows 7, Linux, OS X 10.5, OS X 10.6, OS X 10.7.
-
-#### Arch
-
-The operating system architecture. Typically one of x86, x64.
-
-#### Notes
-
-Special notes for the run.
-
-#### omg, low, med, normal, high, ultra, ultimate
-
-In this order, the integer part (part before the . - yes, we round downwards) from the fps number from the MED: lines of the-big-benchmark.log. For example, the following lines:
-
-    MED: 10510 frames 47.8206480 seconds 219.7795398 fps, one-second fps min/avg/max: 127 227 439 (336 seconds)
-    MED: 10510 frames 48.7275059 seconds 215.6892663 fps, one-second fps min/avg/max: 128 225 476 (336 seconds)
-    MED: 10510 frames 53.5346079 seconds 196.3216023 fps, one-second fps min/avg/max: 109 209 468 (336 seconds)
-    MED: 10510 frames 56.3927591 seconds 186.3714450 fps, one-second fps min/avg/max: 97 199 449 (336 seconds)
-    MED: 10510 frames 62.1347530 seconds 169.1484957 fps, one-second fps min/avg/max: 91 181 399 (336 seconds)
-    MED: 10510 frames 101.2439241 seconds 103.8086985 fps, one-second fps min/avg/max: 23 123 241 (336 seconds)
-    MED: 10510 frames 157.8243561 seconds 66.5930168 fps, one-second fps min/avg/max: 21 74 138 (336 seconds)
-
-lead to: 219, 215, 196, 186, 169, 103, 66
-
-If a run was not made (you then have less MED: lines), or if a run was incomplete for some reason (then the corresponding MIN: line does not show the same frame count as MAX:), a dash (“-”) is to be entered.
-
-#### Notes
-
-Differences to normal test environment (e.g. different resolution than the intended resolution of the test, which is 1024x768), or problems that happened during the test.
diff --git a/Hardware_Requirements.md b/Hardware_Requirements.md
new file mode 100644 (file)
index 0000000..8da7ae4
--- /dev/null
@@ -0,0 +1,231 @@
+Hardware Requirements
+=====================
+
+Results from the-big-benchmark
+------------------------------
+
+This page lists benchmark results on various systems.
+
+Results are normally posted on the forums: http://forums.xonotic.org/showthread.php?tid=2562
+
+> To all users of git and autobuilds:
+>
+> please update, and then run “the big benchmark” as described at [How to run the benchmark](Hardware_Requirements#how-to-run-the-benchmark)
+>
+> Especially those of you who have performance problems are asked to run this. The test can, on older systems, take a few hours, so I’d recommend running it over night.
+>
+> It will generate a log file. Please send me that log file (e.g. via forum PM) and also the following system details:
+>
+> - system name
+> - CPU
+> - CPU clock frequency
+> - number of CPU cores
+> - RAM size
+> - operating system
+> - architecture (32bit or 64bit)
+>
+> so I can add the data to the wiki page above. Alternatively, if you have editing permissions, you can add yourself to the wiki with the required data.
+>
+> When we have this info, our goal is to describe hardware requirements of Xonotic. So please help us by providing benchmark results! Thanks.
+
+---
+
+### Xonotic 0.6 / 0.7
+
+Note: The benchmark list is sorted by “normal” FPS as primary sort key, “med” FPS as secondary, and so on towards lower detail presets.
+
+| Username               | System                | CPU                                           | GHz       | Cores       | RAM       | GPU Vendor                            | GPU Card                                             | Graphics Driver                                      | OS                      | Arch        | omg     | low     | med     | normal   | high    | ultra   | ultimate   | Notes                                                                                     | Log Download                                                                       |
+| ---------------------- | --------------------- | --------------------------------------------- | --------- | ----------- | --------- | ------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ----------------------- | ----------- | ------- | ------- | ------- | -------- | ------- | ------- | ---------- | ----------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |
+| Mattias                | supercow              | Intel i5-3570K                                | 3.5       | 4           | 16G       | NVIDIA Corporation                    | GeForce GTX 670/PCIe/SSE2                            | 4.2.0 NVIDIA 302.17                                  | Linux                   | x86\_64     | 478     | 470     | 422     | 392      | 363     | 317     | 230        |                                                                                           | http://ompldr.org/vZjFpdw                                                          |
+| halogene               | Owl\_2.0              | Intel® Core™ i5-2500 CPU                      | 3.3       | 4           | 8G        | NVIDIA Corporation                    | GeForce GTX 660 Ti/PCIe/SSE2                         | 4.3.0 NVIDIA 325.15                                  | Linux                   | x86\_64     | 450     | 438     | 398     | 375      | 339     | 297     | 218        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=61831#pid61831               |
+| halogene               | Owl                   | Intel® Core™ i5-2500                          | 3.3       | 4           | 8G        | NVIDIA Corporation                    | GeForce GTX 560/PCIe/SSE2                            | 4.3.0 NVIDIA 313.30                                  | Linux                   | x86\_64     | 431     | 423     | 384     | 363      | 325     | 283     | 171        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=57664#pid57664               |
+| Ronan                  | desktop               | Core i7 920                                   | 3.36      | 4           | 24G       | NVIDIA Corporation                    | GeForce GTX 275/PCI/SSE2                             | 3.3.0 NVIDIA 285.05.09                               | Linux                   | x64         | 401     | 402     | 369     | 352      | 294     | 169     | 113        |                                                                                           | http://ompldr.org/vY2lzdw                                                          |
+| Ronan                  | desktop               | Core i7 920                                   | 3.36      | 4           | 24G       | NVIDIA Corporation                    | unknown board/PCI/SSE2                               | 4.2.0 NVIDIA 285.05.09                               | Linux                   | x64         | 396     | 402     | 364     | 344      | 300     | 186     | 144        | GeForce GTX 560 Ti 448 cores                                                              | http://ompldr.org/vY2lyaQ                                                          |
+| rainerzufalldererste   | RZDE-Win8             | Intel i7 2600K                                | 3.4       | 8           | 12G       | NVIDIA Corporation                    | GeForce GTX 560 Ti/PCIe/SSE2                         | 4.3.0                                                | Windows 8 Pro           | x64         | 348     | 335     | 332     | 309      | 271     | 179     | 155        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=57077#pid57077               |
+| tZork                  | ZEN                   | Intel i5-2500k                                | 4.6       | 4           | 4G        | NVIDIA Corporation                    | GeForce 9800 GT/PCI/SSE2                             | 3.3.0                                                | Windows 7               | x64         | 352     | 355     | 316     | 298      | 213     | 112     | 60         | apparently ran at 4.6, not 4.8                                                            | http://mapdl.xonotic.eu/tzork/the-big-benchmark-zen.zip                            |
+| tZork                  | ZEN                   | Intel i5-2500k                                | 4.6       | 4           | 4G        | ATI Technologies Inc.                 | AMD Radeon HD 6700 Series                            | 4.1.11399 Compatibility Profile Context              | Windows 7               | x64         | 355     | 330     | 310     | 297      | 265     | 205     | 155        | Radeon HD 6770                                                                            | http://ompldr.org/vY2s5cw                                                          |
+| Ronan                  | desktop               | Core i7 920                                   | 2.66      | 4           | 24G       | NVIDIA Corporation                    | unknown board/PCI/SSE2                               | 4.2.0 NVIDIA 285.05.09                               | Linux                   | x64         | 334     | 342     | 309     | 296      | 259     | 164     | 134        | GeForce GTX 560 Ti 448 cores                                                              | http://ompldr.org/vY2l0eA                                                          |
+| Ronan                  | desktop               | Core i7 920                                   | 3.36      | 4           | 24G       | NVIDIA Corporation                    | GeForce GTX 560 Ti/PCIe/SSE2                         | 4.2.0                                                | Windows 7 Pro           | x64         | 335     | 325     | 300     | 289      | 257     | 176     | 142        | GeForce GTX 560 Ti 448 cores                                                              | http://ompldr.org/vY3J0bA                                                          |
+| Heal                   | Heal                  | Core i7 2600k                                 | 3.4       | 4           | 8G        | NVIDIA Corporation                    | GeForce GTX 570/PCI/SSE2                             | 4.2.0                                                | Windows 7               | x64         | 339     | 330     | 302     | 288      | 265     | 175     | 141        |                                                                                           | http://ompldr.org/vY3FzMw                                                          |
+| Acidphase              | GameBeast             | AMD FX 8150                                   | 4.0       | 8 ?         | 16G       | NVIDIA Corporation                    | GeForce GTX 660 Ti FTW+                              | 4.x.y NVIDIA 325.15                                  | Linux                   | x86\_64     | 323     | 319     | 288     | 276      | 146     | 79      | 38         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=61944#pid61944               |
+| Grunt                  | tulkass               | Intel i5-2500                                 | 3.30      | 4           | 8G        | NVIDIA Corporation                    | GeForce GT 440/PCI/SSE2                              | 4.2.0 NVIDIA 290.10                                  | Linux                   | x64         | 326     | 311     | 286     | 239      | 167     | 117     | 58         |                                                                                           | http://rghost.net/36234085                                                         |
+| Lee\_Stricklin         | lee-desktop           | AM2+ Socket AMD Phenom II X4                  | 3         | 4           | 4G        | NVIDIA Corporation                    | GeForce 9800 GTX+/PCI/SSE2                           | 3.2.0 NVIDIA 195.36.24                               | Linux                   | x64         | 299     | 293     | 261     | 250      | 225     | 118     | 76         |                                                                                           | http://ompldr.org/vY2wzcw                                                          |
+| Soelen                 | Desktop               | Intel Core i7 CPU 930                         | 2.8       | 4           | 32G       | NVIDIA Corporation                    | GeForce GTX 480/PCI/SSE2                             | 3.2.0                                                | Windows 7               | x64         | 285     | 280     | 257     | 246      | 199     | 135     | 108        |                                                                                           | http://ompldr.org/vY2x4eA                                                          |
+| edh                    | SG03                  | Core 2 Duo E8200                              | 2.66      | 2           | 2G        | NVIDIA Corporation                    | GeForce 9600 GT/PCI/SSE2                             | 3.3.0 NVIDIA 290.10                                  | Linux                   | x64         | 292     | 287     | 255     | 236      | 187     | 82      | 42         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=35154#pid35154               |
+| halogene               | Owl                   | Intel® Core™ i5-2500                          | 3.3       | 4           | 8G        | NVIDIA Corporation                    | GeForce GTX 560/PCIe/SSE2                            | 4.3.0                                                | Windows 7               | x64         | 284     | 277     | 258     | 232      | 215     | 202     | 142        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=57664#pid57664               |
+| zykure                 | nubase                | Intel Xeon E5420                              | 2.5       | 8           | 16G       | NVIDIA Corporation                    | Quadro FX3700/PCIe/SSE2                              | 3.3.0 Nvidia 295.20                                  | Linux                   | x64         | 283     | 255     | 239     | 227      | 193     | 84      | 50         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=35646#pid35646               |
+| rocknroll237           | desktop               | Intel i7 960                                  | 3.2       | 4           | 6G        | ATI Technologies Inc.                 | ASUS ARES                                            | 4.1.11161                                            | Windows 7               | x64         | 270     | 250     | 228     | 215      | 194     | 130     | 117        |                                                                                           |                                                                                    |
+| tZork                  | mediabox              | Intel i3-2100                                 | 3.1       | 2           | 8G        | ATI Technologies Inc.                 | AMD Radeon HD 6700 Series                            | 4.1.11399 Compatibility Profile Context              | Windows 7               | x64         | 259     | 237     | 224     | 212      | 183     | 130     | 116        | Radeon HD 6770                                                                            | http://mapdl.xonotic.eu/tzork/the-big-benchmark3.zip                               |
+| Halbyrd                | WisdomLikeSilence     | Intel Core i5-2300                            | 2.3       | 4           | 8G        | ATI Technologies Inc.                 | AMD Radeon HD 6900 Series                            | 4.2.11762 Compatibility Profile Context              | Windows 7               | x64         | 249     | 234     | 219     | 210      | 188     | 152     | 140        | Radeon HD 6970                                                                            | http://forums.xonotic.org/showthread.php?tid=2562&pid=51166#pid51166               |
+| halogene               | MacBookPro            | Intel® Core™ i7-2635QM                        | 2.0       | 4           | 8G        | ATI Technologies Inc.                 | AMD Radeon HD 7400M Series                           | 4.2.11903 Compatibility Profile Context              | Linux                   | x86\_64     | 282     | 263     | 229     | 200      | 111     | 72      | 35         | MacBook Pro 8.1 with proprietary driver                                                   | http://forums.xonotic.org/showthread.php?tid=2562&pid=57664#pid57664               |
+| halogene               | McArch                | Intel® Core™ i7-2675QM                        | 2.2       | 4           | 8G        | X.Org (ATI)                           | Gallium 0.4 on AMD TURKS (6750M)                     | 3.0 Mesa 10.2.6                                      | Linux                   | x86\_64     | 249     | 248     | 225     | 213      | 143     | 88      | 54         | MacBook Pro 8.2 with AMD GPU / OSS driver                                                 | http://forums.xonotic.org/attachment.php?aid=1316                                  |
+| ferndan                | -                     | AMD APU A8-5600K                              | 3.6       | 4           | 8G        | ATI Technologies Inc.                 | AMD Radeon 7650D                                     | 4.2.11931 Compatibility Profile Context              | Linux                   | x86\_64     | 238     | 227     | 209     | 198      | 141     | 95      | 62         | GPU integrated on APU                                                                     | http://forums.xonotic.org/showthread.php?tid=2562&pid=53766#pid53766               |
+| SavageX                | desktop               | Phenom II X4 945                              | 3.0       | 4           | 8G        | ATI Technologies Inc.                 | AMD Radeon HD 5670                                   | 4.1.11005 Compatibility Profile Context              | Linux                   | x64         | 249     | 232     | 210     | 195      | 168     | 103     | 73         |                                                                                           | http://ompldr.org/iY2lwYg                                                          |
+| qorl                   | -                     | AMD Phenom II                                 | 3.4       | 4           | 8G        | ATI Technologies Inc.                 | AMD Radeon HD 6850                                   | 6.14.10.12002                                        | Windows 7 Ultimate      | x64         | 239     | 221     | 201     | 189      | 171     | 109     | 100        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=56376#pid56376               |
+| rafallus               | desktop-c2d           | Core 2 Duo E8400                              | 3         | 2           | 4G        | ATI Technologies Inc.                 | ATI Radeon HD 4800 Series                            | 3.2.9704 Compatibility Profile Context               | Windows XP              | x64         | 230     | 215     | 197     | 189      | 167     | 107     | 97         |                                                                                           | http://forums.xonotic.org//showthread.php?tid=2562&pid=34192#pid34192              |
+| Halbyrd                | Xenoglossicist        | Intel Core i5 2300                            | 2.8       | 4           | 16G       | ATI Technologies Inc.                 | MD Radeon HD 6900 Series                             | 4.2.12217 Compatibility Profile Context 12.104.0.0   | Windows 7               | x64         | 228     | 216     | 200     | 188      | 174     | 154     | 120        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=59121#pid59121               |
+| divVerent              | grawp                 | Athlon II X4 620                              | 2.6       | 4           | 4G        | NVIDIA Corporation                    | GeForce GTS 250/PCI/SSE2                             | 3.3.0 NVIDIA 290.10                                  | Linux                   | x64         | 219     | 215     | 196     | 186      | 169     | 103     | 66         |                                                                                           | http://ompldr.org/vY2luNQ                                                          |
+| Maddin                 | maddinsrechner        | AMD Athlon™ II X3 455 Processor               | 3.3       | 3           | 8G        | NVIDIA Corporation                    | GeForce GTX 660/PCIe/SSE2/3DNOW!                     | 4.3.0 NVIDIA 313.30                                  | Linux                   | x86         | 214     | 216     | 195     | 186      | 172     | 154     | 114        |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=60782#pid60782               |
+| Sless                  | Withers               | i7 920                                        | 2.66      | 4           | 18G       | ATI Technologies Inc.                 | AMD Radeon HD 6900 Series                            | 4.2.11399 Compatibility Profile Context              | Windows 7               | x64         | 229     | 213     | 196     | 185      | 168     | 108     | 107        |                                                                                           | http://dl.dropbox.com/u/51677128/misc/the-big-benchmark-Withers.log                |
+| halogene               | hparch                | Intel® Core™ i5-5200U CPU                     | 2.2       | 4           | 8G        | Intel Open Source Technology Center        | Mesa DRI Intel® HD Graphics 5500 (Broadwell GT2) | 3.0 Mesa 10.5.7    | Linux     | x64         | 225  | 206 | 199 | 183 | 126 | 101 | 73 | HP Elitebook Folio 1040 | http://forums.xonotic.org/showthread.php?tid=2562&pid=72474#pid72474 |
+| naryl                  | naryl-desktop         | Intel® Core™ i5-3570K CPU                     | 3.4       | 4           | 16G       | Tungsten Graphics, Inc                | Mesa DRI Intel® Ivybridge Desktop                    | 3.0 Mesa 8.0.4                                       | Linux                   | x64         | 281     | 248     | 217     | 168      | 108     | 76      | 37         |                                                                                           | http://ompldr.org/vZzFidg                                                          |
+| monad                  | desktop               | AMD Athlon™ II X2 250                         | 3         | 2           | 2G        | NVIDIA Corporation                    | GeForce GT 220/PCI/SSE2/3DNOW!                       | 3.3.0 NVIDIA 290.10                                  | Linux                   | x86         | 196     | 198     | 175     | 165      | 132     | 62      | 32         |                                                                                           |                                                                                    |
+| freefang               | Desktop               | Core 2 Quad Q9550                             | 2.83      | 4           | 4G        | NVIDIA Corporation                    | GeForce GTS 250/PCI/SSE2                             | 3.3.0                                                | Windows Vista           | x86         | 166     | 166     | 152     | 146      | 129     | 85      | 65         |                                                                                           | http://ompldr.org/vY2pnMg                                                          |
+| rafallus               | desktop-amd-7770      | Athlon X2 7750BE                              | 2.7       | 2           | 4G        | ATI Technologies Inc                  | ATI Radeon HD 7770                                   | Catalyst 12.8                                        | Windows XP              | x86         | 184     | 167     | 151     | 142      | 121     | 80      | 73         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=52824#pid52824               |
+| rafallus               | desktop-sb            | Intel Celeron G530                            | 1.6       | ?           | 8G        | ATI Technologies Inc                  | ATI Radeon HD 7770                                   | Catalyst 10.8                                        | Windows 7               | x64         | 180     | 153     | 137     | 133      | 125     | 110     | 87         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=52824#pid52824               |
+| divVerent              | grawp                 | Athlon II X4 620                              | 2.6       | 4           | 4G        | nouveau                               | Gallium 0.4 on NV92                                  | 2.1 Mesa 7.11.2                                      | Linux                   | x64         | 160     | 152     | 141     | 127      | 91      | 72      | 53         | GTS 250                                                                                   | http://ompldr.org/vY2o1dw                                                          |
+| divVerent              | nb-04                 | Intel® Core™2 Duo CPU P8700                   | 2.53      | 2           | 4G        | NVIDIA Corporation                    | GeForce 9600M GS/PCI/SSE2                            | 3.3.0 NVIDIA 290.10                                  | Linux                   | x64         | 196     | 183     | 161     | 125      | 96      | 39      | 17         |                                                                                           | http://ompldr.org/vY2lxeQ                                                          |
+| nyov                   | ti                    | Athlon 64 X2 6000+                            | 3.0       | 2           | 2G        | ATI Technologies Inc.                 | AMD Radeon HD 6970                                   | 4.2.11318 Compatibility Profile Context              | Linux                   | x64         | 162     | 149     | 133     | 123      | 105     | 69      | 60         | windowed mode, git                                                                        | http://ompldr.org/vY2l3bg                                                          |
+| halogene               | mcbuntu               | Intel® Core™ i7-2675QM                        | 2.2       | 4           | 8G        | Intel Open Source Technology Center   | Mesa DRI Intel® Sandybridge Mobile                   | 3.0 Mesa 9.1.3                                       | Linux                   | x86\_64     | 194     | 178     | 159     | 122      | 83      | 54      | 35         | MacBook Pro 8,2 with integrated GPU                                                       | http://forums.xonotic.org/showthread.php?tid=2562&pid=60061#pid60061               |
+| zgreg                  | -                     |                                               |           |             |           | X.org                                 | Gallium 0.4 on AMD TURKS                             | 3.0 Mesa 9.2.0-devel                                 | Linux                   | x64         | 152     | 142     | 131     | 121      | 104     | 86      | 58         | R600\_DEBUG=sb enabled (shader optimizer) on AMD Radeon HD 6670                           | http://greg.kinoho.net/big-benchmark.tar.xz                                        |
+| adem                   | home pc               | Intel Core i5-2320                            | 3.0       | 4           | 8G        | Intel                                 | Intel® HD Graphics Family                            | 3.1.0 - Build 8.15.10.2622                           | Windows 7               | x64         | 176     | 154     | 136     | 118      | 81      | 50      | 21         | Sandy Bridge                                                                              | http://forums.xonotic.org/showthread.php?tid=2562&pid=35348#pid35348               |
+| kamp                   |                       | Intel® Core™ i5-3230M                         | 2.6       | 4           | 6G        | Intel                                 | Intel HD 4000                                        |                                                      | Linux                   | x86\_64     | 166     | 137     | 130     | 116      | 93      | 66      | 47         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=60777#pid60777               |
+| Maddin                 | desktop               | Athlon 64 X2 4800+                            | 2.2       | 2           | 2G        | NVIDIA Corporation                    | GeForce GTS 250/PCI/SSE2/3DNOW!                      | 3.3.0 NVIDIA 260.19.06                               | Linux                   | x86         | 135     | 135     | 121     | 116      | 106     | 65      | 44         |                                                                                           | http://dl.dropbox.com/u/31065422/Xonotic/misc/the-big-benchmark-maddin.log         |
+| cortez                 | desktop               | Core 2 Quad Q6600                             | 2         | 4           | 4G        | NVIDIA Corporation                    | GeForce GTX 260/PCI/SSE2                             | 3.3.0                                                | Windows 7               | x86         | 121     | 126     | 114     | 111      | 106     | 65      | 59         |                                                                                           | http://ompldr.org/vY21qeg                                                          |
+| tZork                  | SPAKULATORN           | Intel Core i5 CPU M 450                       | 2.4       | 2           | 6G        | ATI Technologies Inc.                 | ATI Mobility Radeon HD 5470                          | 3.2.9751 Compatibility Profile Context               | Windows 7               | x64         | 167     | 152     | 136     | 107      | 70      | 51      | 29         |                                                                                           | http://ompldr.org/vY21keA                                                          |
+| halogene               | whisper               | AMD Athlon™ 64 X2 Dual Core Processor 3800+   | 2.0       | 2           | 1G        | NVIDIA Corporation                    | GeForce 7950 GT/PCIe/SSE2                            | 2.1.2 NVIDIA 304.88                                  | Linux                   | x86\_64     | 130     | 124     | 112     | 105      | 90      | 75      | 46         | after tweaking some desktop effects                                                       | http://forums.xonotic.org/showthread.php?tid=2562&pid=60299#pid60299               |
+| halogene               | whisper               | AMD Athlon™ 64 X2 Dual Core Processor 3800+   | 2.0       | 2           | 1G        | NVIDIA Corporation                    | GeForce 7950 GT/PCIe/SSE2                            | 2.1.2 NVIDIA 304.88                                  | Linux                   | x86\_64     | 126     | 121     | 107     | 103      | 86      | 68      | 41         | OUTDATED, see entry for “whisper” above                                                   | http://forums.xonotic.org/showthread.php?tid=2562&pid=60057#pid60057               |
+| Unknown[NF]            | Xenon                 | Phenom X6 1090T                               | 3.2       | 6           | 16G       | NVIDIA Corporation                    | GeForce 8800 GTX/PCIe/SSE2                           | 3.3.0                                                | Windows 8               | X64         | 100     | 102     | 96      | 94       | 86      | 68      | 53         | Consumer Preview 296.17 Driver                                                            | http://ompldr.org/vY3o4dg                                                          |
+| Mirio                  | nn                    | Athlon 64 X2 3800+                            | 2.0       | 2           | 1G        | NVIDIA Corporation                    | GeForce 9800 GT/PCI/SSE2/3DNOW!                      | 3.1.0                                                | Windows XP (Home)       | x86         | 106     | 105     | 96      | 92       | 86      | 55      | 45         |                                                                                           | http://ompldr.org/vY2lydA                                                          |
+| zgreg                  | -                     |                                               |           |             |           | ATI Technologies Inc.                 | AMD Radeon HD 6670                                   | 4.2.12217 Compatibility Profile Context 12.104.0.0   | Windows 7               | x64         | 105     | 89      | 91      | 83       | 71      | 67      | 51         |                                                                                           | http://greg.kinoho.net/big-benchmark.tar.xz                                        |
+| zykure                 | supernova             | Intel i3-2310M                                | 2.1       | 4           | 4G        | Intel Open Source Technology Center   | Mesa DRI Intel SandyBridge Mobile                    | 3.0 Mesa 9.0-devel                                   | Linux                   | x64         | 126     | 121     | 108     | 82       | 54      | 35      | 17         | using updated Mesa drivers from https://launchpad.net/\~oibaf/+archive/graphics-drivers   | http://forums.xonotic.org/showthread.php?tid=2562&pid=49042#pid49042               |
+| freefang               | Laptop                | Core 2 Duo T9600                              | 2.8       | 2           | 4G        | NVIDIA Corporation                    | Quadro FX 770M/PCI/SSE2                              | 3.3.0                                                | Vista                   | x86         | 145     | 106     | 102     | 82       | 85      | 37      | 18         |                                                                                           | http://ompldr.org/vY2p4dg                                                          |
+| Maddin                 | desktop               | Athlon 64 X2 4800+                            | 2.2       | 2           | 2G        | NVIDIA Corporation                    | GeForce GTS 250/PCI/SSE2/3DNOW!                      | 3.3.0                                                | Windows XP              | x86         | 83      | 113     | 103     | 80       | 92      | 60      | 48         |                                                                                           | http://dl.dropbox.com/u/31065422/Xonotic/misc/the-big-benchmark-maddin-winxp.log   |
+| theShadow              | Macbook Pro           | Intel Core i7                                 | 2.66      | 1           | 8G        | NVIDIA Corporation                    | NVIDIA GeForce GT 330M OpenGL Engine                 | 2.1 NVIDIA-7.12.9                                    | OS X Lion               | x64         | 194     | 82      | 71      | 68       | 58      | 43      | 36         | windowed                                                                                  | http://www.mediafire.com/?kmogs5aykcu4mpa                                          |
+| zykure                 | supernova             | Intel i3-2310M                                | 2.1       | 4           | 4G        | Tungsten Graphics, Inc                | Mesa DRI SandyBridge                                 | 3.0 Mesa 8.1-devel                                   | Linux                   | x64         | 119     | 115     | 94      | 67       | 42      | 25      | 13         | using updated Mesa drivers from https://launchpad.net/\~oibaf/+archive/graphics-drivers   | http://forums.xonotic.org/showthread.php?tid=2562&pid=35646#pid35646               |
+| rafallus               | desktop-amd           | Athlon X2 7750BE                              | 2.7       | 2           | 4G        | NVIDIA Corporation                    | GeForce 7300 GT/PCI/SSE2/3DNOW!                      | 2.0.3                                                | Windows XP              | x86         | 120     | 103     | 94      | 67       | 56      | 32      | 13         |                                                                                           | http://forums.xonotic.org//showthread.php?tid=2562&pid=34192#pid34192              |
+| zykure                 | supernova             | Intel i3-2310M                                | 2.1       | 4           | 4G        | Tungsten Graphics, Inc                | Mesa DRI SandyBridge                                 | 2.1 Mesa 7.11                                        | Linux                   | x64         | 107     | 103     | 83      | 59       | 39      | 25      | 13         |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=35646#pid35646               |
+| Ronan                  | lenovo-x121e          | Core i3 2357M                                 | 1.3       | 2           | 8G        | Intel                                 | Intel® HD Graphics 3000                              | 3.1.0 - Build 8.15.10.2559                           | Windows 7               | x64         | 79      | 67      | 61      | 58       | 49      | 34      | 18         |                                                                                           | http://ompldr.org/vY2l0eA                                                          |
+| edh                    | SN54G                 | Athlon XP 2400+                               | 2.0       | 1           | 1G        | NVIDIA Corporation                    | GeForce 6600 GT/AGP/SSE/3DNOW!                       | 2.1.1 NVIDIA 100.14.11                               | Linux                   | x86         | 67      | 63      | 57      | 49       | 17      | 9       | 5          |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=35238#pid35238               |
+| SavageX                | nettop                | AMD E-350                                     | 1.6       | 2           | 4G        | ATI Technologies Inc.                 | AMD Radeon HD 6350                                   | 4.1.11005 Compatibility Profile Context              | Linux                   | x64         | 58      | 54      | 47      | 45       | 34      | 25      | -          |                                                                                           | http://ompldr.org/iY2lzcg                                                          |
+| ItsMe                  | Laptop                | Intel Core™2 Duo CPU T8100                    | 2.1       | 2           | 4G        | NVIDIA Corporation                    | GeForce 8400M GS/PCI/SSE2                            | 3.3.0 NVIDIA 290.10                                  | Linux                   | x64         | 74      | 67      | 59      | 43       | 33      | 13      | 5          |                                                                                           | http://ompldr.org/vY2tzdA/                                                         |
+| halogene               | FortKnox              | Intel® Atom™ CPU 330                          | 1.6       | 2           | 2G        | NVIDIA Corporation                    | ION/integrated/SSE2                                  | 3.3.0 NVIDIA 313.30                                  | Linux                   | x86\_64     | 49      | 49      | 45      | 43       | 35      | 16      | 7          |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=57664#pid57664               |
+| divVerent              | grawp                 | Athlon II X4 620                              | 2.6       | 4           | 4G        | ATI Technologies Inc.                 | ATI Radeon HD 4200                                   | 3.3.11399 Compatibility Profile Context              | Linux                   | x64         | 66      | 60      | 55      | 42       | 32      | 19      | 10         |                                                                                           | http://ompldr.org/vY2pmNQ                                                          |
+| naryl                  | naryl-laptop          | Core i3-2310M                                 | 2.10      | 2           | 1.8G      | Tungsten Graphics, Inc                | Mesa DRI Intel® Sandybridge Mobile                   | 2.1 Mesa 7.11.2                                      | Linux                   | x64         | 58      | 56      | 51      | 40       | 29      | 22      | 12         |                                                                                           | http://ompldr.org/vY2owZA                                                          |
+| divVerent              | nb-04                 | Intel® Core™2 Duo CPU P8700                   | 2.53      | 2           | 4G        | nouveau                               | Gallium 0.4 on NV96                                  | 2.1 Mesa 7.11.2                                      | Linux                   | x64         | 51      | 49      | 46      | 37       | 29      | 23      | 15         | GeForce 9600M                                                                             | http://ompldr.org/vY2lxeQ                                                          |
+| edh                    | lastdecade/1          | Sempron 2800+                                 | 2.0       | ?           | 1G        | ATI Technologies Inc.                 | ATI Radeon 9550                                      | 2.1.8545 Release                                     | Windows XP Pro          | x86         | 67      | 63      | 52      | 24       | 19      | -       | -          | graphical issues, no offset mapping                                                       | http://forums.xonotic.org/showthread.php?tid=2562&pid=55084#pid55084               |
+| Ronan                  | laptop-2007           | Core Duo T2600                                | 2.16      | 2           | 3G        | ATI Technologies Inc                  | ATI MOBILITY RADEON X2300                            | 2.1.8545 Release                                     | Windows 7               | x86         | 38      | 35      | 32      | 24       | -       | -       | -          | Legacy modded drivers                                                                     | http://ompldr.org/vY2l3aw                                                          |
+| Sless                  | Optidrex 760          | Intel Core 2 Duo E7400                        | 2.8       | 2           | 2G        | Intel                                 | Intel Eaglelake                                      | 2.0.0 - Build 7.15.10.1545                           | Windows Vista           | x86         | 37      | 23      | 21      | 23       | 10      | 11      | 6          | Dell Optiplex 760                                                                         | http://dl.dropbox.com/u/51677128/misc/the-big-benchmark\_760.log                   |
+| edh                    | lastdecade/2          | Athlon XP 2000+ Palomino                      | 1.66      | ?           | 768M      | NVIDIA Corporation                    | Geforce FX5900 128Mb (BIOS modded to FX5950 Ultra)   | 2.0.3                                                | Windows XP Pro          | x86         | 50      | 48      | 41      | 21       | 15      | -       | -          | no offset mapping                                                                         | http://forums.xonotic.org/showthread.php?tid=2562&pid=55084#pid55084               |
+| edh                    | lastdecade/6          | Athlon XP 2400+ Thoroughbred                  | 2.025     | ?           | 768M      | NVIDIA Corporation                    | Radeon 9550 (BIOS modded to 9600, OC’ed)             | 2.1 Mesa 9.0.1                                       | Linux                   | x86         | 56      | 45      | 38      | 21       | 16      | -       | -          | no offset mapping                                                                         | http://forums.xonotic.org/showthread.php?tid=2562&pid=55084#pid55084               |
+| edh                    | lastdecade/3          | Athlon XP 2000+ Palomino                      | 1.66      | ?           | 768M      | NVIDIA Corporation                    | Geforce FX5900 128Mb (BIOS modded to FX5950 Ultra)   | 2.1.2 NVIDIA 173.14.36                               | Linux                   | x86         | 52      | 48      | 41      | 20       | 15      | -       | -          | no offset mapping                                                                         | http://forums.xonotic.org/showthread.php?tid=2562&pid=55084#pid55084               |
+| freefang               | OldMac                | Intel Core 2 Duo                              | 2.16      | 2           | 2G        | NVIDIA Corporation                    | NVIDIA GeForce 7300 GT OpenGL Engine                 | 2.1 NVIDIA-1.6.36                                    | OS X 10.6               | x86         | 59      | 57      | 46      | 18       | 7       | 6       | 4          |                                                                                           | http://ompldr.org/vY2xpYg                                                          |
+| Ronan                  | desktop               | Core i7 920                                   | 3.36      | 4           | 24G       | -                                     | -                                                    | -                                                    | Linux                   | x64         | 71      | 48      | 40      | 16       | 15      | a)      | a)         | +vid\_soft 1                                                                              | http://ompldr.org/vY21mZg                                                          |
+| gamingwithnetbooks     | netbook-LT4004u       | Intel Atom N2600                              | 1.6       | 4           | 2G        | Intel                                 | Intel GMA 3600                                       | 3.0 Intel 8.14.8.1091                                | Windows 7 Starter       | x86         | 34      | 31      | 26      | 14       | 8       | -       | -          | Benchmark ran at 1024x768                                                                 | http://forums.xonotic.org/showthread.php?tid=2562&pid=55344#pid55344               |
+| Sless                  | FUmachine             | Athlon 64 X2 5000+                            | 2.66      | 2           | 2G        | NVIDIA Corporation                    | GeForce 6100 nForce 405/PCI/SSE2/3DNOW!              | 2.0.3                                                | Windows XP              | x86         | 20      | 18      | 16      | 10       | 8       | -       | -          |                                                                                           | http://dl.dropbox.com/u/51677128/misc/the-big-benchmark\_FUmachine.log             |
+| divVerent              | grawp                 | Athlon II X4 620                              | 2.6       | 4           | 4G        | -                                     | -                                                    | -                                                    | Linux                   | x64         | 34      | 23      | 18      | 8        | 7       | a)      | a)         | +vid\_soft 1                                                                              | http://ompldr.org/vY2puZg                                                          |
+| matthiaskrgr           | t60                   | Intel Core2 CPU T5600                         | 1.83      | 2           | 3G        | X.Org R300 Project                    | Gallium 0.4 on ATI RV515                             | 2.1 Mesa 7.11.2                                      | Linux                   | x86         | 14      | 12      | 11      | 8        | 4       | 3       | 2          |                                                                                           | http://ompldr.org/vY21keQ                                                          |
+| Ronan                  | laptop-2007           | Core Duo T2600                                | 2.16      | 2           | 3G        | ATI Technologies Inc                  | ATI MOBILITY RADEON X2300                            | 2.1.8545 Release                                     | Windows 7               | x86         | 103     | 77      | 66      | b)       | b)      | b)      | b)         | +vid\_gl20 0                                                                              | http://ompldr.org/vY21mbA                                                          |
+| Sless                  | Optidrex 755          | Intel Core 2 Duo E6550                        | 2.33      | 2           | 2G        | Intel                                 | Intel Bear Lake B                                    | 1.4.0 - Build 7.14.10.4864                           | Windows XP              | x86         | 65      | 33      | 26      | b)       | b)      | b)      | b)         | Dell Optiplex 755                                                                         | http://dl.dropbox.com/u/51677128/misc/the-big-benchmark\_755.log                   |
+| edh                    | lastdecade/5          | Athlon XP 2000+ Palomino                      | 1.66      | ?           | 768M      | NVIDIA Corporation                    | Geforce4 MX440                                       | 1.5.7                                                | Windows XP Pro          | x86         | 55      | 35      | 25      | -        | -       | -       | -          | no OpenGL 2.0                                                                             | http://forums.xonotic.org/showthread.php?tid=2562&pid=55084#pid55084               |
+| divVerent              | grawp                 | Athlon II X4 620                              | 2.6       | 4           | 4G        | X.Org                                 | Gallium 0.4 on AMD RS880                             | 2.1 Mesa 7.11.2                                      | Linux                   | x64         | 43      | 30      | 23      | b)       | b)      | b)      | b)         | Radeon HD 4200, +vid\_gl20 0                                                              | http://ompldr.org/vY2pzZQ                                                          |
+| Sless                  | Kiste1                | Intel Core 2 T5500                            | 1.66      | 2           | 1G        | Intel                                 | Intel 945GM                                          | 1.4.0 - Build 7.14.10.4926                           | Windows XP              | x86         | 47      | 22      | 17      | b)       | b)      | b)      | b)         |                                                                                           | http://dl.dropbox.com/u/51677128/misc/the-big-benchmark-KISTE1.log                 |
+| Sless                  | Optidrex280           | Pentium 4                                     | 2.8       | 1           | 512M      | Intel                                 | Intel 915G                                           | 1.4.0 - Build 4.14.10.3889                           | Windows XP              | x86         | 46      | 21      | 14      | b)       | b)      | b)      | b)         | Dell Optiplex GX280                                                                       | http://dl.dropbox.com/u/51677128/misc/the-big-benchmark\_280.log                   |
+| edh                    | SN54G                 | Athlon XP 2400+                               | 2.0       | 1           | 1G        | NVIDIA Corporation                    | GeForce FX 5600/AGP/SSE/3DNOW!                       | 2.1.1 NVIDIA 100.14.11                               | Linux                   | x86         | 57      | 18      | 14      | -        | -       | -       | -          |                                                                                           | http://forums.xonotic.org/showthread.php?tid=2562&pid=35285#pid35285               |
+| divVerent              | grawp                 | Athlon II X4 620                              | 2.6       | 4           | 4G        | X.Org                                 | Gallium 0.4 on AMD RS880                             | 2.1 Mesa 7.11.2                                      | Linux                   | x64         | 13      | 11      | 11      | -        | -       | -       | -          | Radeon HD 4200                                                                            | http://ompldr.org/vY2pjNw                                                          |
+| Mirio                  | laptop                | Mobile Intel® Pentium® 4                      | 2.80      | 1           | 512M      | NVIDIA Corporation                    | GeForce FX Go53xx Series/AGP/SSE2                    | 1.4.0                                                | Windows XP (Home)       | x86         | 66      | 20      | 10      | b)       | b)      | b)      | b)         |                                                                                           | http://ompldr.org/vY2l4NA                                                          |
+| divVerent              | 0214/38ff/fea7/a2f9   | AMD Opteron™ Processor 246                    | 2         | 1           | 1G        | NVIDIA Corporation                    | GeForce2 MX/MX 400/PCI/SSE2                          | 1.5.8 NVIDIA 96.43.20                                | Linux                   | x86\_64     | 30      | 10      | 7       | b)       | b)      | b)      | b)         |                                                                                           | http://ompldr.org/vZDVvYQ                                                          |
+| edh                    | unplayably-old        | Intel Pentium 3                               | 0.55      | 1           | 320M      | NVIDIA Corporation                    | GeForce4 MX 440/AGP/SSE                              | 1.5.8 NVIDIA 96.43.23                                | Linux                   | x86\_64     | 16      | 9       | 6       | -        | -       | -       | -          | no OpenGL 2.0                                                                             | http://forums.xonotic.org/showthread.php?tid=2562&pid=56818#pid56818               |
+| divVerent              | whitenot              | Intel® Celeron® M processor                   | 0.63      | 1           | 2G        | Tungsten Graphics, Inc                | Mesa DRI Intel® 915GM x86/MMX/SSE2                   | 1.4 Mesa 7.11.2                                      | Linux                   | x86         | 19      | 7       | 3       | b)       | b)      | b)      | b)         | Eee PC 701, 800x480                                                                       | http://ompldr.org/vY21jNg                                                          |
+| edh                    | LianLi                | Pentium 3 Tualatin 256Kb                      | 1.0       | 2           | 384M      | nouveau                               | Gallium 0.4 on NV31                                  | 1.5 Mesa 7.11.2                                      | Linux                   | x86         | 20      | 13      | -       | b)       | b)      | b)      | b)         | Geforce FX5600 256Mb                                                                      | http://forums.xonotic.org/showthread.php?tid=2562&pid=35521#pid35521               |
+| cortez                 | netbook               | Intel Atom                                    | 1.6       | 1           | 1G        | Intel                                 | Intel 945GM                                          | 1.4.0 - Build 7.14.10.4926                           | Windows XP              | x86         | 18      | 8       | -       | b)       | b)      | b)      | b)         | Acer Aspire One, 640x480                                                                  | http://ompldr.org/vY2s0Zw                                                          |
+| edh                    | lastdecade/4          | Athlon XP 2000+ Palomino                      | 1.66      | ?           | 768M      | NVIDIA Corporation                    | Geforce FX5900 128Mb (BIOS modded to FX5950 Ultra)   | 1.5 Mesa 9.0.1                                       | Linux                   | x86         | 49      | -       | -       | -        | -       | -       | -          | Nouveau driver, graphical errors after “omg”                                              | http://forums.xonotic.org/showthread.php?tid=2562&pid=55084#pid55084               |
+| edh                    | p3-550                | Pentium 3                                     | 0.55      | 1           | 320M      | Tungsten Graphics, Inc.               | Mesa DRI R200 (RV250 4966) x86/MMX/SSE TCL DRI2      | 1.3 Mesa 7.11.2                                      | Linux                   | x86         | 11      | -       | -       | b)       | b)      | b)      | b)         | Radeon 9000, crashed at low                                                               | http://forums.xonotic.org/showthread.php?tid=2562&pid=35179#pid35179               |
+| edh                    | Craptop               | Via C3-2 ‘Nehemiah’                           | 1.2       | 1           | 256M      | VIA Technology                        | Mesa DRI CastleRock (CLE266) x86/MMX/SSE             | 1.2 Mesa 7.11.2                                      | Linux                   | x86         | 9       | -       | -       | b)       | b)      | b)      | b)         | Display errors at low, and about 0.1fps                                                   | http://forums.xonotic.org/showthread.php?tid=2562&pid=35646#pid35646               |
+| ---------------------- | --------------------- | --------------------------------------------- | --------- | ----------- | --------- | ------------------------------------- | ---------------------------------------------------- | ---------------------------------------------------- | ----------------------- | ----------- | ------- | ------- | ------- | -------- | ------- | ------- | ---------- | ----------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |
+| Username               | System                | CPU                                           | GHz       | Cores       | RAM       | GPU Vendor                            | GPU Card                                             | Graphics Driver                                      | OS                      | Arch        | omg     | low     | med     | normal   | high    | ultra   | ultimate   | Notes                                                                                     | Log Download                                                                       |
+
+**Result notes:**
+ * a) vid\_soft is disqualified at ultra and above for lack of support of: offsetmapping, reliefmapping, postprocessing
+ * b) the OpenGL 1.x renderer is disqualified at normal and above for lack of support of: deluxemapping, gloss, offsetmapping, reliefmapping, postprocessing
+
+**Benchmark results :**
+ * 2013-08-28:  
+   ![Benchmark results](assets/images/benchmark.png)
+
+How to run the benchmark
+------------------------
+
+First turn off any screen savers you may be running.
+
+Then, in misc/tools/the-big-benchmark/, run the-big-benchmark.sh or the-big-benchmark.bat depending on OS. Wait for about 1 hour, then - if it’s not done yet - you are allowed to quit the process by entering “quit” on the game console. The results will be saved in data/the-big-benchmark.log. Upload this file, and analyze it and enter the values here!
+
+The lists are sorted by the “normal” column in descending order, where a - (test not been done due to taking too long) is still better than a disqualification. In case of equality, further sort criteria are chosen to the left.
+
+The fields have the following meanings and are extracted as follows:
+
+#### Username
+
+The user name on the tracker here.
+
+#### System
+
+A host identifier (e.g. host name)
+
+#### CPU
+
+The CPU in the system. On Linux, get this from `/proc/cpuinfo`.
+
+#### GHz
+
+The CPU clock frequency.
+
+#### Cores
+
+The number of CPU cores in the system. On Linux, get this from `/proc/cpuinfo`.
+
+#### RAM
+
+The total physical memory of the system. On Linux, get this from `free`.
+
+#### Vendor
+
+The vendor string (typically graphics card vendor). Get this from the-big-benchmark.log, as in:
+
+    GL_VENDOR: NVIDIA Corporation
+
+#### Card
+
+The renderer string (typically graphics card name). Get this from the-big-benchmark.log, as in:
+
+    GL_RENDERER: GeForce GTS 250/PCI/SSE2
+
+Sometimes this just lists the series of the chipset, and not the exact chipset number. In that case, please write the proper chipset number in the Notes column!
+
+#### Driver
+
+The version string (typically driver version). Get this from the-big-benchmark.log, as in:
+
+    GL_VERSION: 3.3.0 NVIDIA 290.10
+
+#### OS
+
+The operating system. One of Windows XP, Vista, Windows 7, Linux, OS X 10.5, OS X 10.6, OS X 10.7.
+
+#### Arch
+
+The operating system architecture. Typically one of x86, x64.
+
+#### Notes
+
+Special notes for the run.
+
+#### omg, low, med, normal, high, ultra, ultimate
+
+In this order, the integer part (part before the . - yes, we round downwards) from the fps number from the MED: lines of the-big-benchmark.log. For example, the following lines:
+
+    MED: 10510 frames 47.8206480 seconds 219.7795398 fps, one-second fps min/avg/max: 127 227 439 (336 seconds)
+    MED: 10510 frames 48.7275059 seconds 215.6892663 fps, one-second fps min/avg/max: 128 225 476 (336 seconds)
+    MED: 10510 frames 53.5346079 seconds 196.3216023 fps, one-second fps min/avg/max: 109 209 468 (336 seconds)
+    MED: 10510 frames 56.3927591 seconds 186.3714450 fps, one-second fps min/avg/max: 97 199 449 (336 seconds)
+    MED: 10510 frames 62.1347530 seconds 169.1484957 fps, one-second fps min/avg/max: 91 181 399 (336 seconds)
+    MED: 10510 frames 101.2439241 seconds 103.8086985 fps, one-second fps min/avg/max: 23 123 241 (336 seconds)
+    MED: 10510 frames 157.8243561 seconds 66.5930168 fps, one-second fps min/avg/max: 21 74 138 (336 seconds)
+
+lead to: 219, 215, 196, 186, 169, 103, 66
+
+If a run was not made (you then have less MED: lines), or if a run was incomplete for some reason (then the corresponding MIN: line does not show the same frame count as MAX:), a dash (“-”) is to be entered.
+
+#### Notes
+
+Differences to normal test environment (e.g. different resolution than the intended resolution of the test, which is 1024x768), or problems that happened during the test.
diff --git a/Mapping/Basic_mapping_in_Radiant.markdown b/Mapping/Basic_mapping_in_Radiant.markdown
deleted file mode 100644 (file)
index c40d286..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-Basic mapping in Radiant
-========================
-
-Layout of Radiant
------------------
-
-This section will introduce the Radiant interface. Before you begin mapping, one must become acquainted with the basic user interface first. Radiant has five main sections by default, as numbered in the screenshot below. Let’s examine these panels a bit more in depth:
-
-[![Radient](https://gitlab.com/xonotic/xonotic/wikis/assets/images/radiant_sections_thumb.png)](https://gitlab.com/xonotic/xonotic/wikis/assets/images/radiant_sections.png)
-
-The Workspace
--------------
-
-### *Fig. 1* - 2D View
-
-This area allows you to view the map straight on from a certain axis, similar to what you may find in a CAD program. This is useful for aligning things flush with walls or other surfaces and for finer movement/scaling control. Numbers on the top and left edges mark distances on the grid, to help in the placement and measurement of objects or in the creation of symmetric structures.
-
-### *Fig. 2* - 3D View
-
-Provides a basic 3D render of how your finished map will look. It does not render lighting or special effects, but it does render the textures and geometry as you will see them in-game. Some vital information (e.g. primitive count, transformations, etc.) are displayed in the bottom left-hand corner of the viewport.
-
-### *Fig. 3* - Texture View
-
-Lets you browse and manage your map’s texture sets. Scroll through the list on left-hand panel and select a texture set to see thumbnails of its contents in the open space to the right.
-
-### *Fig. 4* - Console
-
-This is a short, moderated version of the console output of Radiant’s console output. It displays the status of the map’s build progress and various OpenGL information. Generally, the output from your native system’s console may be much more complete and verbose than the in-editor one, particularly during compile time.
-
-### *Fig. 5* - Tools
-
-The standard toolbar. Contains all of the necessary tools and actions that you can use on your map, such as opening and saving existing maps, selecting meshes, rotating objects, flipping objects on an axis, etc. To see what an icon means, hover your cursor over the item and the tool’s name and a brief description should appear on the bottom left-hand corner of the window in the status bar.
-
diff --git a/Mapping/Basic_mapping_in_Radiant.md b/Mapping/Basic_mapping_in_Radiant.md
new file mode 100644 (file)
index 0000000..c40d286
--- /dev/null
@@ -0,0 +1,33 @@
+Basic mapping in Radiant
+========================
+
+Layout of Radiant
+-----------------
+
+This section will introduce the Radiant interface. Before you begin mapping, one must become acquainted with the basic user interface first. Radiant has five main sections by default, as numbered in the screenshot below. Let’s examine these panels a bit more in depth:
+
+[![Radient](https://gitlab.com/xonotic/xonotic/wikis/assets/images/radiant_sections_thumb.png)](https://gitlab.com/xonotic/xonotic/wikis/assets/images/radiant_sections.png)
+
+The Workspace
+-------------
+
+### *Fig. 1* - 2D View
+
+This area allows you to view the map straight on from a certain axis, similar to what you may find in a CAD program. This is useful for aligning things flush with walls or other surfaces and for finer movement/scaling control. Numbers on the top and left edges mark distances on the grid, to help in the placement and measurement of objects or in the creation of symmetric structures.
+
+### *Fig. 2* - 3D View
+
+Provides a basic 3D render of how your finished map will look. It does not render lighting or special effects, but it does render the textures and geometry as you will see them in-game. Some vital information (e.g. primitive count, transformations, etc.) are displayed in the bottom left-hand corner of the viewport.
+
+### *Fig. 3* - Texture View
+
+Lets you browse and manage your map’s texture sets. Scroll through the list on left-hand panel and select a texture set to see thumbnails of its contents in the open space to the right.
+
+### *Fig. 4* - Console
+
+This is a short, moderated version of the console output of Radiant’s console output. It displays the status of the map’s build progress and various OpenGL information. Generally, the output from your native system’s console may be much more complete and verbose than the in-editor one, particularly during compile time.
+
+### *Fig. 5* - Tools
+
+The standard toolbar. Contains all of the necessary tools and actions that you can use on your map, such as opening and saving existing maps, selecting meshes, rotating objects, flipping objects on an axis, etc. To see what an icon means, hover your cursor over the item and the tool’s name and a brief description should appear on the bottom left-hand corner of the window in the status bar.
+
diff --git a/Pr.markdown b/Pr.markdown
deleted file mode 100644 (file)
index 9866c3a..0000000
+++ /dev/null
@@ -1,110 +0,0 @@
-Media Channels
-==============
-
-Official Xonotic Media Channels for PR
---------------------------------------
-
-News updates
--   Blog - http://www.xonotic.org/team/blog/
--   Twitter - http://www.twitter.com/xonotic
--   Identica - http://identi.ca/xonotic
--   Desura - http://www.desura.com/games/xonotic
--   Facebook - http://www.facebook.com/xonotic
-
-Video content
--   YouTube - http://www.youtube.com/xonotic
-
-Informational
--   Wikipedia - http://en.wikipedia.org/wiki/Xonotic
-
-Public Relations
-================
-
-Our first announcement of this project is came sometime after Illfonic first unveils their Nexuiz game at GDC http://www.gdconf.com
-which is held March 9th - 13th.
-
-This announcement will be pushed out through the following channels:
---------------------------------------------------------------------
-
--   Through the “HELP” system on popular Nexuiz servers, like Simba in Europe and HOCTF/HODM in US
--   Slashdot, digg, reddit and other social news sites
--   Nexuiz IRC channels and private messaging
--   Alientrap forum
--   Email or PM to key individuals who left Nexuiz long ago (Perhaps using AT or NN forum private messaging)
-
-While our official project announcement was to be very neutral, the Slashdot/digg/reddit posts will reflect more of the community’s overall impression of the Illfonic issue.
-
-Goals
------
-
-The main goal for this introductory announcement is to state **1) our reasons** and **2) our plans**, but we will focus more on our plans. This announcement should not focus on finger-pointing. Rather, it should focus on our own values and the goals that we plan to accomplish with this new game. We will have to touch upon the **broken trust** that stemmed from decisions made behind closed doors. But our main goal for this announcement is to make our intentions clear, and, of course, to unveil the new name. We want to begin filling up our IRC channels and our website.
-
-Words we will try to not use, or use limitedly:
------------------------------------------------
-
--   Fork
--   Nexuiz
--   Alientrap
--   Illfonic
-
-What is going on?
------------------
-
-1.  A new game formed from the major contributors of Nexuiz GPL
-2.  The name of the game is Xonotic
-3.  The website is xonotic.org
-4.  IRC channel is \#xonotic on quakenet
-5.  Development IRC channel is \#xonotic @ freenode
-
-Reasons
--------
-
-1.  Trust issues
-2.  A fresh start
-3.  Focus on our values
-
-Project changes
----------------
-
-1.  Restructure project leadership for more balance
-2.  Improved project organization
-3.  More focus on the community
-4.  Better management of marketing and public relations
-5.  A more defined artistic direction
-6.  More emphasis on recruiting and communicating with new contributors to the project
-
-What will change in the game?
------------------------------
-
-1.  New set of player models
-2.  New player animations
-3.  New set of sounds
-4.  Default maps will get a makeover and new ones will be introduced
-5.  New names for some weapons and game modes
-6.  Improved bot AI system
-7.  Increased quality and detail of textures
-
-The name
---------
-
-1.  Uniqueness
-2.  Most voted by the team
-3.  Other reasons about why we chose the name
-
-Summary
--------
-
-1.  We appreciate everyone’s support
-2.  We will try to be open and supportive with new potential contributors (as opposed to an “I’m too 1337 for you” attitude)
-3.  We want to keep an active flow of information among the team members
-4.  We look forward to creating a game that everyone will enjoy
-
-Details or topics we will not mention in our announcement
----------------------------------------------------------
-
-(better to spread them out for future announcements)
-
-1.  Central user system
-2.  Website features
-3.  Details about roles
-
diff --git a/Pr.md b/Pr.md
new file mode 100644 (file)
index 0000000..9866c3a
--- /dev/null
+++ b/Pr.md
@@ -0,0 +1,110 @@
+Media Channels
+==============
+
+Official Xonotic Media Channels for PR
+--------------------------------------
+
+News updates
+-   Blog - http://www.xonotic.org/team/blog/
+-   Twitter - http://www.twitter.com/xonotic
+-   Identica - http://identi.ca/xonotic
+-   Desura - http://www.desura.com/games/xonotic
+-   Facebook - http://www.facebook.com/xonotic
+
+Video content
+-   YouTube - http://www.youtube.com/xonotic
+
+Informational
+-   Wikipedia - http://en.wikipedia.org/wiki/Xonotic
+
+Public Relations
+================
+
+Our first announcement of this project is came sometime after Illfonic first unveils their Nexuiz game at GDC http://www.gdconf.com
+which is held March 9th - 13th.
+
+This announcement will be pushed out through the following channels:
+--------------------------------------------------------------------
+
+-   Through the “HELP” system on popular Nexuiz servers, like Simba in Europe and HOCTF/HODM in US
+-   Slashdot, digg, reddit and other social news sites
+-   Nexuiz IRC channels and private messaging
+-   Alientrap forum
+-   Email or PM to key individuals who left Nexuiz long ago (Perhaps using AT or NN forum private messaging)
+
+While our official project announcement was to be very neutral, the Slashdot/digg/reddit posts will reflect more of the community’s overall impression of the Illfonic issue.
+
+Goals
+-----
+
+The main goal for this introductory announcement is to state **1) our reasons** and **2) our plans**, but we will focus more on our plans. This announcement should not focus on finger-pointing. Rather, it should focus on our own values and the goals that we plan to accomplish with this new game. We will have to touch upon the **broken trust** that stemmed from decisions made behind closed doors. But our main goal for this announcement is to make our intentions clear, and, of course, to unveil the new name. We want to begin filling up our IRC channels and our website.
+
+Words we will try to not use, or use limitedly:
+-----------------------------------------------
+
+-   Fork
+-   Nexuiz
+-   Alientrap
+-   Illfonic
+
+What is going on?
+-----------------
+
+1.  A new game formed from the major contributors of Nexuiz GPL
+2.  The name of the game is Xonotic
+3.  The website is xonotic.org
+4.  IRC channel is \#xonotic on quakenet
+5.  Development IRC channel is \#xonotic @ freenode
+
+Reasons
+-------
+
+1.  Trust issues
+2.  A fresh start
+3.  Focus on our values
+
+Project changes
+---------------
+
+1.  Restructure project leadership for more balance
+2.  Improved project organization
+3.  More focus on the community
+4.  Better management of marketing and public relations
+5.  A more defined artistic direction
+6.  More emphasis on recruiting and communicating with new contributors to the project
+
+What will change in the game?
+-----------------------------
+
+1.  New set of player models
+2.  New player animations
+3.  New set of sounds
+4.  Default maps will get a makeover and new ones will be introduced
+5.  New names for some weapons and game modes
+6.  Improved bot AI system
+7.  Increased quality and detail of textures
+
+The name
+--------
+
+1.  Uniqueness
+2.  Most voted by the team
+3.  Other reasons about why we chose the name
+
+Summary
+-------
+
+1.  We appreciate everyone’s support
+2.  We will try to be open and supportive with new potential contributors (as opposed to an “I’m too 1337 for you” attitude)
+3.  We want to keep an active flow of information among the team members
+4.  We look forward to creating a game that everyone will enjoy
+
+Details or topics we will not mention in our announcement
+---------------------------------------------------------
+
+(better to spread them out for future announcements)
+
+1.  Central user system
+2.  Website features
+3.  Details about roles
+
diff --git a/Recording/Demo_Camera.markdown b/Recording/Demo_Camera.markdown
deleted file mode 100644 (file)
index 624e044..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-Demo Camera
-===========
-
-The demo camera allows you to customize camera position and angles during demo playback. It was designed mainly for video recording, not for spectating complete matches although maybe you can use it for this purpose depending on the map.
-
-Note that depending on server configuration you might not see all players all the time in your demos, this is due to the anti-wallhack feature that works by not sending to you information about players you can’t see.
-
-Currently most camera options can be configured only using the console or config files. For more information about advanced configuration you can see Chapter 2 and Chapter 4 of the great [Nexuiz In Depth](http://www.youtube.com/user/NexuizInDepth) series by Green Marine. Also probably you will want to associate some camera commands to keyboard keys or mouse buttons, see this link for more information.
-
-Basic usage
------------
-
-### Enable camera
-
-This camera is available only during demo playback, to enable it you have to set the following variable (cvar)
-
-    camera_enable 1
-
-Instantly you will be able to look anywhere and change the camera position using standar movement keys. Use 0 instead of 1 to disable it :)
-
-### Camera angles
-
-Like I said before you can control vertical and horizontal angles using the mouse. To rotate the view you need to use the commands `+roll_right` and `+roll_left`. Probably you will want to bind them to keyboard keys with something like:
-
-    bind LEFTARROW "+roll_left"
-    bind RIGHTARROW "+roll_right"
-
-### Camera position
-
-Using standard movement keys you can move to right/left and forward/backward, also by default you can move up/down just looking up/down and moving forward/backward.
-For moving up/down you can use +moveup and +movedown.
-
-    bind UPARROW "+moveup"
-    bind DOWNARROW "+moveDOWN"
-
-### Camera modes
-
-The camera has two modes: chase and free. By default the camera starts in chase mode, chaning the position according to player movements. To switch to free mode, where you can put the camera anywhere on the map, use:
-
-    camera_free 1
-
-Advanced usage
---------------
-
-For more advanced configuration variables look for the prefix `camera_` in the advanced settings menu: Settings-\>Misc-\>Advanced Settings...
-
diff --git a/Recording/Demo_Camera.md b/Recording/Demo_Camera.md
new file mode 100644 (file)
index 0000000..624e044
--- /dev/null
@@ -0,0 +1,46 @@
+Demo Camera
+===========
+
+The demo camera allows you to customize camera position and angles during demo playback. It was designed mainly for video recording, not for spectating complete matches although maybe you can use it for this purpose depending on the map.
+
+Note that depending on server configuration you might not see all players all the time in your demos, this is due to the anti-wallhack feature that works by not sending to you information about players you can’t see.
+
+Currently most camera options can be configured only using the console or config files. For more information about advanced configuration you can see Chapter 2 and Chapter 4 of the great [Nexuiz In Depth](http://www.youtube.com/user/NexuizInDepth) series by Green Marine. Also probably you will want to associate some camera commands to keyboard keys or mouse buttons, see this link for more information.
+
+Basic usage
+-----------
+
+### Enable camera
+
+This camera is available only during demo playback, to enable it you have to set the following variable (cvar)
+
+    camera_enable 1
+
+Instantly you will be able to look anywhere and change the camera position using standar movement keys. Use 0 instead of 1 to disable it :)
+
+### Camera angles
+
+Like I said before you can control vertical and horizontal angles using the mouse. To rotate the view you need to use the commands `+roll_right` and `+roll_left`. Probably you will want to bind them to keyboard keys with something like:
+
+    bind LEFTARROW "+roll_left"
+    bind RIGHTARROW "+roll_right"
+
+### Camera position
+
+Using standard movement keys you can move to right/left and forward/backward, also by default you can move up/down just looking up/down and moving forward/backward.
+For moving up/down you can use +moveup and +movedown.
+
+    bind UPARROW "+moveup"
+    bind DOWNARROW "+moveDOWN"
+
+### Camera modes
+
+The camera has two modes: chase and free. By default the camera starts in chase mode, chaning the position according to player movements. To switch to free mode, where you can put the camera anywhere on the map, use:
+
+    camera_free 1
+
+Advanced usage
+--------------
+
+For more advanced configuration variables look for the prefix `camera_` in the advanced settings menu: Settings-\>Misc-\>Advanced Settings...
+
diff --git a/privacy-and-security.markdown b/privacy-and-security.markdown
deleted file mode 100644 (file)
index e8fa43a..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-Privacy and Security
-====================
-Xonitic runs on top of the DarkPlaces Engine. When connecting to a server, the client may download and run QuakeC code for the gameplay. The security policies are:
-
--   QC code can't create any symlinks.
--   QC code can read anything below ~/.xonotic/*/ including stuff pointed-to by symlinks (which, as the game can't create any, would have to have been placed by the user). It cannot read user's private key in ~/.xonotic/*.d0si.
--   QC code can write anything below ~/.xonotic/data including user's config.
--   Paths are properly sanitized according to this policy.
--   QC code can send arbitrary data back anywhere (by using the "connect" command).
-
-Therefore, do not put any files you don't want to expose under ~/.xonotic
-
-Reference
----------
-divVerent's [answer](http://forums.xonotic.org/showthread.php?tid=5427&pid=71595#pid71595) in the forum
\ No newline at end of file
diff --git a/privacy-and-security.md b/privacy-and-security.md
new file mode 100644 (file)
index 0000000..e8fa43a
--- /dev/null
@@ -0,0 +1,15 @@
+Privacy and Security
+====================
+Xonitic runs on top of the DarkPlaces Engine. When connecting to a server, the client may download and run QuakeC code for the gameplay. The security policies are:
+
+-   QC code can't create any symlinks.
+-   QC code can read anything below ~/.xonotic/*/ including stuff pointed-to by symlinks (which, as the game can't create any, would have to have been placed by the user). It cannot read user's private key in ~/.xonotic/*.d0si.
+-   QC code can write anything below ~/.xonotic/data including user's config.
+-   Paths are properly sanitized according to this policy.
+-   QC code can send arbitrary data back anywhere (by using the "connect" command).
+
+Therefore, do not put any files you don't want to expose under ~/.xonotic
+
+Reference
+---------
+divVerent's [answer](http://forums.xonotic.org/showthread.php?tid=5427&pid=71595#pid71595) in the forum
\ No newline at end of file