Path: blob/21.2-virgl/src/gallium/auxiliary/util/u_dirty_flags.h
4561 views
#ifndef U_DIRTY_FLAGS_H1#define U_DIRTY_FLAGS_H23/* Here's a convenient list of dirty flags to use in a driver. Either4* include it directly or use it as a starting point for your own5* list.6*/7#define U_NEW_VIEWPORT 0x18#define U_NEW_RASTERIZER 0x29#define U_NEW_FS 0x410#define U_NEW_FS_CONSTANTS 0x811#define U_NEW_FS_SAMPLER_VIEW 0x1012#define U_NEW_FS_SAMPLER_STATES 0x2013#define U_NEW_VS 0x4014#define U_NEW_VS_CONSTANTS 0x8015#define U_NEW_VS_SAMPLER_VIEW 0x10016#define U_NEW_VS_SAMPLER_STATES 0x20017#define U_NEW_BLEND 0x40018#define U_NEW_CLIP 0x80019#define U_NEW_SCISSOR 0x100020#define U_NEW_POLYGON_STIPPLE 0x200021#define U_NEW_FRAMEBUFFER 0x400022#define U_NEW_VERTEX_ELEMENTS 0x800023#define U_NEW_VERTEX_BUFFER 0x1000024#define U_NEW_QUERY 0x2000025#define U_NEW_DEPTH_STENCIL 0x4000026#define U_NEW_GS 0x8000027#define U_NEW_GS_CONSTANTS 0x10000028#define U_NEW_GS_SAMPLER_VIEW 0x20000029#define U_NEW_GS_SAMPLER_STATES 0x4000003031#endif323334