Merge pull request #46901 from lawnjelly/ewok_large_fvf_soft_xform
Batching - large FVF forces non-hardware transform
This commit is contained in:
commit
b3e605ab13
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ public:
|
|||
|
||||
// we are always splitting items with lots of commands,
|
||||
// and items with unhandled primitives (default)
|
||||
bool use_hardware_transform() const { return num_item_refs == 1; }
|
||||
bool use_hardware_transform() const { return (num_item_refs == 1) && !(flags & RasterizerStorageCommon::USE_LARGE_FVF); }
|
||||
};
|
||||
|
||||
struct BItemRef {
|
||||
|
|
Loading…
Reference in a new issue