1254885Sdumbbell/*
2254885Sdumbbell * Copyright 2009 Advanced Micro Devices, Inc.
3254885Sdumbbell * Copyright 2009 Red Hat Inc.
4254885Sdumbbell *
5254885Sdumbbell * Permission is hereby granted, free of charge, to any person obtaining a
6254885Sdumbbell * copy of this software and associated documentation files (the "Software"),
7254885Sdumbbell * to deal in the Software without restriction, including without limitation
8254885Sdumbbell * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9254885Sdumbbell * and/or sell copies of the Software, and to permit persons to whom the
10254885Sdumbbell * Software is furnished to do so, subject to the following conditions:
11254885Sdumbbell *
12254885Sdumbbell * The above copyright notice and this permission notice (including the next
13254885Sdumbbell * paragraph) shall be included in all copies or substantial portions of the
14254885Sdumbbell * Software.
15254885Sdumbbell *
16254885Sdumbbell * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17254885Sdumbbell * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18254885Sdumbbell * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19254885Sdumbbell * THE COPYRIGHT HOLDER(S) AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20254885Sdumbbell * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21254885Sdumbbell * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22254885Sdumbbell * DEALINGS IN THE SOFTWARE.
23254885Sdumbbell *
24254885Sdumbbell */
25254885Sdumbbell
26254885Sdumbbell#ifndef R600_BLIT_SHADERS_H
27254885Sdumbbell#define R600_BLIT_SHADERS_H
28254885Sdumbbell
29254885Sdumbbell#include <sys/cdefs.h>
30254885Sdumbbell__FBSDID("$FreeBSD$");
31254885Sdumbbell
32254885Sdumbbellextern const u32 r6xx_ps[];
33254885Sdumbbellextern const u32 r6xx_vs[];
34254885Sdumbbellextern const u32 r7xx_default_state[];
35254885Sdumbbellextern const u32 r6xx_default_state[];
36254885Sdumbbell
37254885Sdumbbell
38254885Sdumbbellextern const u32 r6xx_ps_size, r6xx_vs_size;
39254885Sdumbbellextern const u32 r6xx_default_size, r7xx_default_size;
40254885Sdumbbell
41254885Sdumbbell__pure uint32_t int2float(uint32_t x);
42254885Sdumbbell#endif
43