diff options
author | Michal Krol <[email protected]> | 2006-02-13 11:23:36 +0000 |
---|---|---|
committer | Michal Krol <[email protected]> | 2006-02-13 11:23:36 +0000 |
commit | a2ea606377ed5679dc513eabcf2d398216b47d61 (patch) | |
tree | bd50c1ae07d521b8b1aada83973f81faa291f697 /src/mesa/tnl/t_pipeline.h | |
parent | 2363fff347a064b9584ecb8e26d80d421cafbbbd (diff) |
Add ARB_vertex_shader stage just before render stage.
If enabled, all other stages, except render, are disabled.
Diffstat (limited to 'src/mesa/tnl/t_pipeline.h')
-rw-r--r-- | src/mesa/tnl/t_pipeline.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_pipeline.h b/src/mesa/tnl/t_pipeline.h index 6c7a0814c56..e5622c9d566 100644 --- a/src/mesa/tnl/t_pipeline.h +++ b/src/mesa/tnl/t_pipeline.h @@ -1,9 +1,9 @@ /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 6.5 * - * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -54,6 +54,7 @@ extern const struct tnl_pipeline_stage _tnl_texture_transform_stage; extern const struct tnl_pipeline_stage _tnl_point_attenuation_stage; extern const struct tnl_pipeline_stage _tnl_arb_vertex_program_stage; extern const struct tnl_pipeline_stage _tnl_vertex_program_stage; +extern const struct tnl_pipeline_stage _tnl_arb_vertex_shader_stage; extern const struct tnl_pipeline_stage _tnl_render_stage; /* Shorthand to plug in the default pipeline: |