1af69d88dSmrg/* 2af69d88dSmrg * Mesa 3-D graphics library 3af69d88dSmrg * 4af69d88dSmrg * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. 5af69d88dSmrg * Copyright (C) 2011 VMware, Inc. All Rights Reserved. 6af69d88dSmrg * 7af69d88dSmrg * Permission is hereby granted, free of charge, to any person obtaining a 8af69d88dSmrg * copy of this software and associated documentation files (the "Software"), 9af69d88dSmrg * to deal in the Software without restriction, including without limitation 10af69d88dSmrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 11af69d88dSmrg * and/or sell copies of the Software, and to permit persons to whom the 12af69d88dSmrg * Software is furnished to do so, subject to the following conditions: 13af69d88dSmrg * 14af69d88dSmrg * The above copyright notice and this permission notice shall be included 15af69d88dSmrg * in all copies or substantial portions of the Software. 16af69d88dSmrg * 17af69d88dSmrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 18af69d88dSmrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19af69d88dSmrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 20af69d88dSmrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 21af69d88dSmrg * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 22af69d88dSmrg * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 23af69d88dSmrg * OTHER DEALINGS IN THE SOFTWARE. 24af69d88dSmrg */ 25af69d88dSmrg 2601e04c3fSmrg#ifndef VBO_NOOP_H 2701e04c3fSmrg#define VBO_NOOP_H 28af69d88dSmrg 2901e04c3fSmrg#include "main/dd.h" 30af69d88dSmrg 3101e04c3fSmrgstruct _glapi_table; 32af69d88dSmrg 33af69d88dSmrgextern void 347ec681f3Smrg_mesa_noop_vtxfmt_init(struct gl_context *ctx, GLvertexformat *vfmt); 35af69d88dSmrg 36af69d88dSmrgextern GLboolean 37af69d88dSmrg_mesa_using_noop_vtxfmt(const struct _glapi_table *dispatch); 38af69d88dSmrg 39af69d88dSmrg 4001e04c3fSmrg#endif /* VBO_NOOP_H */ 41