1#ifndef GEN8_EU_H 2#define GEN8_EU_H 3 4#include "brw/brw_eu.h" 5 6bool gen8_wm_kernel__affine(struct brw_compile *p, int dispatch_width); 7bool gen8_wm_kernel__affine_mask(struct brw_compile *p, int dispatch_width); 8bool gen8_wm_kernel__affine_mask_ca(struct brw_compile *p, int dispatch_width); 9bool gen8_wm_kernel__affine_mask_sa(struct brw_compile *p, int dispatch_width); 10 11bool gen8_wm_kernel__projective(struct brw_compile *p, int dispatch_width); 12bool gen8_wm_kernel__projective_mask(struct brw_compile *p, int dispatch_width); 13bool gen8_wm_kernel__projective_mask_ca(struct brw_compile *p, int dispatch_width); 14bool gen8_wm_kernel__projective_mask_sa(struct brw_compile *p, int dispatch_width); 15 16bool gen8_wm_kernel__affine_opacity(struct brw_compile *p, int dispatch_width); 17bool gen8_wm_kernel__projective_opacity(struct brw_compile *p, int dispatch_width); 18 19#endif /* GEN8_EU_H */ 20