rsx: Drop pointless ROP control bit check
This commit is contained in:
@@ -1,8 +1,6 @@
|
|||||||
R"(
|
R"(
|
||||||
|
|
||||||
#ifdef _ENABLE_POLYGON_STIPPLE
|
#ifdef _ENABLE_POLYGON_STIPPLE
|
||||||
if (_test_bit(rop_control, POLYGON_STIPPLE_ENABLE_BIT))
|
|
||||||
{
|
|
||||||
// Convert x,y to linear address
|
// Convert x,y to linear address
|
||||||
const uvec2 stipple_coord = uvec2(gl_FragCoord.xy) % uvec2(32, 32);
|
const uvec2 stipple_coord = uvec2(gl_FragCoord.xy) % uvec2(32, 32);
|
||||||
const uint address = stipple_coord.y * 32u + stipple_coord.x;
|
const uint address = stipple_coord.y * 32u + stipple_coord.x;
|
||||||
@@ -19,7 +17,6 @@ R"(
|
|||||||
{
|
{
|
||||||
_kill();
|
_kill();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _ENABLE_PROGRAMMABLE_BLENDING
|
#ifdef _ENABLE_PROGRAMMABLE_BLENDING
|
||||||
|
|||||||
Reference in New Issue
Block a user