mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 21:30:09 +01:00
gallium: fix comment again. A half-closed interval was intended.
Never saw the [a,b[ notation before.
This commit is contained in:
parent
1dae2be1f6
commit
ff42991c72
1 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@
|
|||
#include "util/u_math.h"
|
||||
|
||||
|
||||
/** 2^x, for x in [-1.0, 1.0] */
|
||||
/** 2^x, for x in [-1.0, 1.0) */
|
||||
float pow2_table[POW2_TABLE_SIZE];
|
||||
|
||||
|
||||
|
|
@ -43,7 +43,7 @@ init_pow2_table(void)
|
|||
}
|
||||
|
||||
|
||||
/** log2(x), for x in [1.0, 2.0] */
|
||||
/** log2(x), for x in [1.0, 2.0) */
|
||||
float log2_table[LOG2_TABLE_SIZE];
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue