mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
i965: Remove traces of nonexistent TAN math function.
Never existed? At least never supported. Doesn't appear in 965, G45, or ILK documentation. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
5bb90cfceb
commit
0c16c12e46
2 changed files with 1 additions and 2 deletions
|
|
@ -1037,7 +1037,6 @@ enum brw_message_target {
|
|||
#define BRW_MATH_FUNCTION_SIN 6 /* was 7 */
|
||||
#define BRW_MATH_FUNCTION_COS 7 /* was 8 */
|
||||
#define BRW_MATH_FUNCTION_SINCOS 8 /* was 6 */
|
||||
#define BRW_MATH_FUNCTION_TAN 9 /* gen4 */
|
||||
#define BRW_MATH_FUNCTION_FDIV 9 /* gen6+ */
|
||||
#define BRW_MATH_FUNCTION_POW 10
|
||||
#define BRW_MATH_FUNCTION_INT_DIV_QUOTIENT_AND_REMAINDER 11
|
||||
|
|
|
|||
|
|
@ -336,7 +336,7 @@ static const char * const math_function[16] = {
|
|||
[BRW_MATH_FUNCTION_SIN] = "sin",
|
||||
[BRW_MATH_FUNCTION_COS] = "cos",
|
||||
[BRW_MATH_FUNCTION_SINCOS] = "sincos",
|
||||
[BRW_MATH_FUNCTION_TAN] = "tan",
|
||||
[BRW_MATH_FUNCTION_FDIV] = "fdiv",
|
||||
[BRW_MATH_FUNCTION_POW] = "pow",
|
||||
[BRW_MATH_FUNCTION_INT_DIV_QUOTIENT_AND_REMAINDER] = "intdivmod",
|
||||
[BRW_MATH_FUNCTION_INT_DIV_QUOTIENT] = "intdiv",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue