mirror of https://github.com/BOINC/boinc.git
- client: identify ATI 97x0 GPUs (from Jord)
svn path=/trunk/boinc/; revision=25061
This commit is contained in:
parent
789622e88d
commit
ba93bdb96b
|
@ -541,3 +541,9 @@ David 13 Jan 2012
|
||||||
|
|
||||||
client/
|
client/
|
||||||
gui_rpc_server_ops.cpp
|
gui_rpc_server_ops.cpp
|
||||||
|
|
||||||
|
David 14 Jan 2012
|
||||||
|
- client: identify ATI 97x0 GPUs (from Jord)
|
||||||
|
|
||||||
|
client/
|
||||||
|
coproc_detect.cpp
|
||||||
|
|
|
@ -1318,6 +1318,9 @@ void COPROC_ATI::get(
|
||||||
case 19:
|
case 19:
|
||||||
gpu_name="AMD Radeon HD 6300 series (Caicos)";
|
gpu_name="AMD Radeon HD 6300 series (Caicos)";
|
||||||
break;
|
break;
|
||||||
|
case 20:
|
||||||
|
gpu_name = "AMD Radeon HD 79x0 series (Tahiti)";
|
||||||
|
break;
|
||||||
// there arent any other target ids inside the Shadercompiler (YET !!! )
|
// there arent any other target ids inside the Shadercompiler (YET !!! )
|
||||||
default:
|
default:
|
||||||
gpu_name="ATI unknown";
|
gpu_name="ATI unknown";
|
||||||
|
|
Loading…
Reference in New Issue