mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-08 08:26:10 +00:00
SBE has now to be explicitely told which channels of which components are used by the pixel shader. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Ben Widawsky <benjamin.widawsky@intel.com>
14 lines
292 B
C
14 lines
292 B
C
#ifndef GEN9_RENDER_H
|
|
#define GEN9_RENDER_H
|
|
|
|
#include "gen8_render.h"
|
|
|
|
#define GEN7_3DSTATE_VF GEN6_3D(3, 0, 0x0c)
|
|
|
|
#define GEN9_SBE_ACTIVE_COMPONENT_NONE 0
|
|
#define GEN9_SBE_ACTIVE_COMPONENT_XY 1
|
|
#define GEN9_SBE_ACTIVE_COMPONENT_XYZ 2
|
|
#define GEN9_SBE_ACTIVE_COMPONENT_XYZW 3
|
|
|
|
#endif
|