12a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)/*
22a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * Mesa 3-D graphics library
32a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * Version:  7.9
42a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *
52a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * Copyright (C) 2010 LunarG Inc.
62a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *
72a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * Permission is hereby granted, free of charge, to any person obtaining a
82a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * copy of this software and associated documentation files (the "Software"),
92a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * to deal in the Software without restriction, including without limitation
102a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * the rights to use, copy, modify, merge, publish, distribute, sublicense,
112a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * and/or sell copies of the Software, and to permit persons to whom the
122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * Software is furnished to do so, subject to the following conditions:
132a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *
142a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * The above copyright notice and this permission notice shall be included
152a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * in all copies or substantial portions of the Software.
162a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *
172a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
182a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
192a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
202a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles) * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
222a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
232a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * DEALINGS IN THE SOFTWARE.
242a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *
252a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * Authors:
262a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *    Chia-I Wu <olv@lunarg.com>
272a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) */
282a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
292a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#ifndef VG_MANAGER_H
302a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#define VG_MANAGER_H
312a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
322a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "state_tracker/st_api.h"
332a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "vg_context.h"
342a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
352a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void
362a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)vg_manager_flush_frontbuffer(struct vg_context *ctx);
372a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
382a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void
392a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)vg_manager_validate_framebuffer(struct vg_context *ctx);
402a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
412a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#endif /* VG_MANAGER_H */
422a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)