Skip to content

Fix index out of range in Texture2D

When Texture2DSamplerExecutionObject<>::GetColor() is called with u or v as 0, when running with linear filter mode, it can go out of index and try to access data at location before the texture data array. This fixes that issue.

Merge request reports