X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmesa%2Ftnl%2Ft_vertex.h;h=fda8f151d3eb497b9b9092cadce243ec05f8442c;hb=30655c211c97a69f0eeb9ad6176ca1db67d15bf9;hp=f2bd145d9e26c65e89adf242acf3f9df37094bcc;hpb=40e852271b1a2f6a41e335c2089e683b24afe57c;p=mesa.git diff --git a/src/mesa/tnl/t_vertex.h b/src/mesa/tnl/t_vertex.h index f2bd145d9e2..fda8f151d3e 100644 --- a/src/mesa/tnl/t_vertex.h +++ b/src/mesa/tnl/t_vertex.h @@ -54,6 +54,7 @@ enum tnl_attr_format { EMIT_4UB_4F_RGBA, /* for color */ EMIT_4UB_4F_BGRA, /* for color */ EMIT_4UB_4F_ARGB, /* for color */ + EMIT_4UB_4F_ABGR, /* for color */ EMIT_4CHAN_4F_RGBA, /* for swrast color */ EMIT_PAD, /* leave a hole of 'offset' bytes */ EMIT_MAX @@ -64,7 +65,15 @@ struct tnl_attr_map { enum tnl_attr_format format; GLuint offset; }; - + +struct tnl_format_info { + const char *name; + tnl_extract_func extract; + tnl_insert_func insert[4]; + const GLuint attrsize; +}; + +extern const struct tnl_format_info _tnl_format_info[EMIT_MAX]; /* Interpolate between two vertices to produce a third: @@ -94,18 +103,11 @@ extern void _tnl_set_attr( GLcontext *ctx, void *vout, GLenum attrib, extern void *_tnl_get_vertex( GLcontext *ctx, GLuint nr ); - -/* - */ extern GLuint _tnl_install_attrs( GLcontext *ctx, const struct tnl_attr_map *map, GLuint nr, const GLfloat *vp, GLuint unpacked_size ); - - - - extern void _tnl_free_vertices( GLcontext *ctx ); extern void _tnl_init_vertices( GLcontext *ctx, @@ -126,24 +128,42 @@ extern void _tnl_invalidate_vertices( GLcontext *ctx, GLuint newinputs ); extern void _tnl_invalidate_vertex_state( GLcontext *ctx, GLuint new_state ); -extern tnl_emit_func _tnl_codegen_emit( GLcontext *ctx ); +extern void _tnl_notify_pipeline_output_change( GLcontext *ctx ); -#define REG_IN (0<<16) -#define REG_OUT (1<<16) -#define REG_VP (2<<16) -#define REG_TMP (3<<16) -#define REG_MASK (3<<16) -#define REG_OFFSET_MASK 0xffff +#define GET_VERTEX_STATE(ctx) &(TNL_CONTEXT(ctx)->clipspace) -#define in( offset ) (REG_IN | (offset)) -#define out( offset ) (REG_OUT | (offset)) -#define vp( offset ) (REG_VP | (offset)) -#define tmp( offset ) (REG_TMP | (offset)) +/* Internal function: + */ +void _tnl_register_fastpath( struct tnl_clipspace *vtx, + GLboolean match_strides ); -extern void _tnl_init_c_codegen( struct tnl_clipspace_codegen *p ); +/* t_vertex_generic.c -- Internal functions for t_vertex.c + */ +void _tnl_generic_copy_pv_extras( GLcontext *ctx, + GLuint dst, GLuint src ); -#define GET_VERTEX_STATE(ctx) &(TNL_CONTEXT(ctx)->clipspace) +void _tnl_generic_interp_extras( GLcontext *ctx, + GLfloat t, + GLuint dst, GLuint out, GLuint in, + GLboolean force_boundary ); + +void _tnl_generic_copy_pv( GLcontext *ctx, GLuint edst, GLuint esrc ); + +void _tnl_generic_interp( GLcontext *ctx, + GLfloat t, + GLuint edst, GLuint eout, GLuint ein, + GLboolean force_boundary ); + +void _tnl_generic_emit( GLcontext *ctx, + GLuint count, + GLubyte *v ); + +void _tnl_generate_hardwired_emit( GLcontext *ctx ); + +/* t_vertex_sse.c -- Internal functions for t_vertex.c + */ +void _tnl_generate_sse_emit( GLcontext *ctx ); #endif