D | etnaviv_compiler_nir_emit.c | 53 #define OPCT(nir, op, src, cond, type) [nir_op_##nir] = { \ argument 59 #define OPC(nir, op, src, cond) OPCT(nir, op, src, cond, F32) argument 60 #define IOPC(nir, op, src, cond) OPCT(nir, op, src, cond, S32) argument 61 #define UOPC(nir, op, src, cond) OPCT(nir, op, src, cond, U32) argument 62 #define OP(nir, op, src) OPC(nir, op, src, TRUE) argument 63 #define IOP(nir, op, src) IOPC(nir, op, src, TRUE) argument 64 #define UOP(nir, op, src) UOPC(nir, op, src, TRUE) argument
|