mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 03:08:05 +02:00
docs/panfrost: fix math-notation
less or equal uses \leq, not <= in latex.
Fixes: e0752673be ("docs/panfrost: Move description of instancing")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29902>
This commit is contained in:
parent
41698eee96
commit
7033623acd
1 changed files with 1 additions and 1 deletions
|
|
@ -107,6 +107,6 @@ Altogether, given the divisor d, the algorithm the driver must follow is:
|
|||
|
||||
1. Set shift = :math:`\lfloor \log_2(d) \rfloor`.
|
||||
2. Compute :math:`m = \lceil 2^{shift + 32} / d \rceil` and :math:`e = 2^{shift + 32} % d`.
|
||||
3. If :math:`e <= 2^{shift}`, then we need to use the round-down algorithm. Set
|
||||
3. If :math:`e \leq 2^{shift}`, then we need to use the round-down algorithm. Set
|
||||
magic_divisor = m - 1 and extra_flags = 1.
|
||||
4. Otherwise, set magic_divisor = m and extra_flags = 0.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue