17117f1b4Smrg/*
27117f1b4Smrg * Mesa 3-D graphics library
37117f1b4Smrg *
4af69d88dSmrg * Copyright (C) 2007  VMware, Inc.   All Rights Reserved.
57117f1b4Smrg *
67117f1b4Smrg * Permission is hereby granted, free of charge, to any person obtaining a
77117f1b4Smrg * copy of this software and associated documentation files (the "Software"),
87117f1b4Smrg * to deal in the Software without restriction, including without limitation
97117f1b4Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense,
107117f1b4Smrg * and/or sell copies of the Software, and to permit persons to whom the
117117f1b4Smrg * Software is furnished to do so, subject to the following conditions:
127117f1b4Smrg *
137117f1b4Smrg * The above copyright notice and this permission notice shall be included
147117f1b4Smrg * in all copies or substantial portions of the Software.
157117f1b4Smrg *
167117f1b4Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
177117f1b4Smrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
187117f1b4Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19af69d88dSmrg * VMWARE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
207117f1b4Smrg * WHETHER IN
217117f1b4Smrg * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
227117f1b4Smrg * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
237117f1b4Smrg */
247117f1b4Smrg
257117f1b4Smrg/**
267117f1b4Smrg * \file t_vp_build.c
277117f1b4Smrg * Create a vertex program to execute the current fixed function T&L pipeline.
287117f1b4Smrg * \author Keith Whitwell
297117f1b4Smrg */
307117f1b4Smrg
317117f1b4Smrg
32c1f859d4Smrg#include "main/glheader.h"
33c1f859d4Smrg#include "main/ffvertex_prog.h"
343464ebd5Sriastradh#include "main/mtypes.h"
357117f1b4Smrg#include "t_vp_build.h"
367117f1b4Smrg
377117f1b4Smrg
387117f1b4Smrg/**
39c1f859d4Smrg * XXX This should go away someday, but still referenced by some drivers...
407117f1b4Smrg */
413464ebd5Sriastradhvoid _tnl_UpdateFixedFunctionProgram( struct gl_context *ctx )
427117f1b4Smrg{
437117f1b4Smrg   if (!ctx->VertexProgram._Current ||
447117f1b4Smrg       ctx->VertexProgram._Current == ctx->VertexProgram._TnlProgram) {
45c1f859d4Smrg      ctx->VertexProgram._Current
46c1f859d4Smrg         = ctx->VertexProgram._TnlProgram
47c1f859d4Smrg         = _mesa_get_fixed_func_vertex_program(ctx);
487117f1b4Smrg   }
497117f1b4Smrg}
50