diff options
| author | Lioncash <mathew1800@gmail.com> | 2021-01-15 02:02:57 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2021-01-15 02:15:32 -0500 |
| commit | 8620de6b2030bef35360d029354f672cde8978f1 (patch) | |
| tree | ed1f105b1fef3fc9a5209c5106accaaee283ebf2 /src/video_core/cdma_pusher.cpp | |
| parent | c8bf0caca0a3b923edcf199824903c9576c6df5c (diff) | |
common/bit_util: Replace CLZ/CTZ operations with standardized ones
Makes for less code that we need to maintain.
Diffstat (limited to 'src/video_core/cdma_pusher.cpp')
| -rw-r--r-- | src/video_core/cdma_pusher.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/cdma_pusher.cpp b/src/video_core/cdma_pusher.cpp index 94679d5d1..33b3c060b 100644 --- a/src/video_core/cdma_pusher.cpp +++ b/src/video_core/cdma_pusher.cpp @@ -18,10 +18,10 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // +#include <bit> #include "command_classes/host1x.h" #include "command_classes/nvdec.h" #include "command_classes/vic.h" -#include "common/bit_util.h" #include "video_core/cdma_pusher.h" #include "video_core/command_classes/nvdec_common.h" #include "video_core/engines/maxwell_3d.h" @@ -56,7 +56,7 @@ void CDmaPusher::Step() { for (const u32 value : values) { if (mask != 0) { - const u32 lbs = Common::CountTrailingZeroes32(mask); + const auto lbs = static_cast<u32>(std::countr_zero(mask)); mask &= ~(1U << lbs); ExecuteCommand(static_cast<u32>(offset + lbs), value); continue; |
