Please remember that any mention of competitors, hinting at competitors or offering to provide details of competitors will result in an account suspension. The full rules can be found under the 'Terms and Rules' link in the bottom right corner of your screen. Just don't mention competitors in any way, shape or form and you'll be OK.
If this is true then it shows they had agreement and nivida is/was defending that ip ownership,which locked out AMD
They didn't lock out ATI from providing their own implementation tho... they prevented them from using the nvidia one... atleast as far as any evidence we have to work with.
Theres a difference tho between that code not enabling itself on unsupported hardware... and that code purposely preventing AA working on other cards when alternative routines are used - people seem to be unable to comprehend the finer point of this.
explain the difference for us, code examples would be helpful![]()
Someone already did...
If ( NVIDIA_CARD_FOUND ) {
DoNvidiaAACodePath();
}
else
{
DoGenericCodePath(); // This Path has no AA yet
}
if (NVIDIA_CARD_NOT_FOUND) [
DoGenericCodePath()
}
else
DoNvidiaAACodePath()
}
the difference between code that enables a path on certain hardware and one that disables it on everythign else is purely down to how you percieve that code. In reality, there is no difference.
the AA doesnt work on anything but nvidia cards ergo whether it enables or disables it is one and the same thing.
So if NVidia's code had a negative effect on ATI hardware that would be okay?
What if NVidia starts adding customised code to games that are beneficial to NVidia hardware but runs inefficiently on ATI hardware? and forcing it to run regardless of the brand of card detected?
inline void DoATIAACodePath()
{
// hahah we broke your code
}
So if NVidia's code had a negative effect on ATI hardware that would be okay?
What if NVidia starts adding customised code to games that are beneficial to NVidia hardware but runs inefficiently on ATI hardware? and forcing it to run regardless of the brand of card detected?
AMD should lock out DX11 to nVidia cards, then we'll see how everyone likes it. And tessallation to boot.
Not really possible...
Unfortunatly this finer point seems to be lost on most of the people posting in this thread.
Rroff said:.. people seem to be unable to comprehend the finer point of this.
The NVIDIA AA code works fine on ATI cards yet it's still being blocked?
Surely the politics or whatever of the past shouldn't matter when the above is true?![]()