11d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert/**************************************************************************
21d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert *
31d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
41d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * All Rights Reserved.
51d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert *
61d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * Permission is hereby granted, free of charge, to any person obtaining a
71d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * copy of this software and associated documentation files (the
81d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * "Software"), to deal in the Software without restriction, including
91d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * without limitation the rights to use, copy, modify, merge, publish,
101d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * distribute, sub license, and/or sell copies of the Software, and to
111d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * permit persons to whom the Software is furnished to do so, subject to
121d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * the following conditions:
131d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert *
141d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * The above copyright notice and this permission notice (including the
151d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * next paragraph) shall be included in all copies or substantial portions
161d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * of the Software.
171d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert *
181d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
191d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
201d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
211d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
221d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
231d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
241d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
251d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert *
261d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert **************************************************************************/
271d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert
281d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert#ifndef ST_CB_PROGRAM_H
291d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert#define ST_CB_PROGRAM_H
301d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert
311d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert
321d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringertstruct dd_function_table;
331d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert
341d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringertextern void
351d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringertst_init_program_functions(struct dd_function_table *functions);
361d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert
371d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert
381d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert#endif
391d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert