1848b8605Smrg/**************************************************************************
2848b8605Smrg *
3848b8605Smrg * Copyright 2003 VMware, Inc.
4848b8605Smrg * All Rights Reserved.
5848b8605Smrg *
6848b8605Smrg * Permission is hereby granted, free of charge, to any person obtaining a
7848b8605Smrg * copy of this software and associated documentation files (the
8848b8605Smrg * "Software"), to deal in the Software without restriction, including
9848b8605Smrg * without limitation the rights to use, copy, modify, merge, publish,
10848b8605Smrg * distribute, sub license, and/or sell copies of the Software, and to
11848b8605Smrg * permit persons to whom the Software is furnished to do so, subject to
12848b8605Smrg * the following conditions:
13848b8605Smrg *
14848b8605Smrg * The above copyright notice and this permission notice (including the
15848b8605Smrg * next paragraph) shall be included in all copies or substantial portions
16848b8605Smrg * of the Software.
17848b8605Smrg *
18848b8605Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19848b8605Smrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20848b8605Smrg * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21848b8605Smrg * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22848b8605Smrg * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23848b8605Smrg * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24848b8605Smrg * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25848b8605Smrg *
26848b8605Smrg **************************************************************************/
27848b8605Smrg
28848b8605Smrg
29848b8605Smrg#ifndef PROG_CACHE_H
30848b8605Smrg#define PROG_CACHE_H
31848b8605Smrg
32848b8605Smrg
33848b8605Smrg#include "main/glheader.h"
34848b8605Smrg
35b8e80941Smrg
36b8e80941Smrg#ifdef __cplusplus
37b8e80941Smrgextern "C" {
38b8e80941Smrg#endif
39b8e80941Smrg
40b8e80941Smrg
41848b8605Smrgstruct gl_context;
42848b8605Smrg
43848b8605Smrg/** Opaque type */
44848b8605Smrgstruct gl_program_cache;
45848b8605Smrg
46848b8605Smrg
47848b8605Smrgextern struct gl_program_cache *
48848b8605Smrg_mesa_new_program_cache(void);
49848b8605Smrg
50848b8605Smrgextern void
51848b8605Smrg_mesa_delete_program_cache(struct gl_context *ctx, struct gl_program_cache *pc);
52848b8605Smrg
53848b8605Smrgextern void
54848b8605Smrg_mesa_delete_shader_cache(struct gl_context *ctx,
55848b8605Smrg			  struct gl_program_cache *cache);
56848b8605Smrg
57848b8605Smrgextern struct gl_program *
58848b8605Smrg_mesa_search_program_cache(struct gl_program_cache *cache,
59848b8605Smrg                           const void *key, GLuint keysize);
60848b8605Smrg
61848b8605Smrgextern void
62848b8605Smrg_mesa_program_cache_insert(struct gl_context *ctx,
63848b8605Smrg                           struct gl_program_cache *cache,
64848b8605Smrg                           const void *key, GLuint keysize,
65848b8605Smrg                           struct gl_program *program);
66848b8605Smrg
67848b8605Smrgvoid
68848b8605Smrg_mesa_shader_cache_insert(struct gl_context *ctx,
69848b8605Smrg			  struct gl_program_cache *cache,
70848b8605Smrg			  const void *key, GLuint keysize,
71848b8605Smrg			  struct gl_shader_program *program);
72848b8605Smrg
73848b8605Smrg
74b8e80941Smrg#ifdef __cplusplus
75b8e80941Smrg}
76b8e80941Smrg#endif
77b8e80941Smrg
78b8e80941Smrg
79848b8605Smrg#endif /* PROG_CACHE_H */
80