blocking exporting overlay hooks on NV40 architecture cards that are not NV40 or NV45: these newer NV40 architecture cards have a new bes, but we don't know how to set it up yet. :-/
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11355 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
Other authors:
|
Other authors:
|
||||||
Mark Watson,
|
Mark Watson,
|
||||||
Rudolf Cornelissen 10/2002-1/2005
|
Rudolf Cornelissen 10/2002-2/2005
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define MODULE_BIT 0x08000000
|
#define MODULE_BIT 0x08000000
|
||||||
@@ -171,10 +171,21 @@ status_t check_overlay_capability(uint32 feature)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* all supported cards have a bes */
|
/* all supported cards have a bes, but... */
|
||||||
LOG(4, ("Overlay: Exporting hook %s.\n", msg));
|
if ((si->ps.card_arch >= NV40A) &&
|
||||||
|
(si->ps.card_type != NV40) && (si->ps.card_type != NV45))
|
||||||
return B_OK;
|
{
|
||||||
|
/* all NV40 architecture cards have a new HDTV capable bes except for
|
||||||
|
* GeForce 6800's. Unfortunately we have no info about the new bes yet. */
|
||||||
|
LOG(4, ("Overlay: Not exporting hook %s.\n", msg));
|
||||||
|
return B_ERROR;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* all other cards have a supported bes */
|
||||||
|
LOG(4, ("Overlay: Exporting hook %s.\n", msg));
|
||||||
|
return B_OK;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
status_t check_acc_capability(uint32 feature)
|
status_t check_acc_capability(uint32 feature)
|
||||||
|
|||||||
Reference in New Issue
Block a user