diff options
author | Rob Clark <[email protected]> | 2016-01-29 12:16:23 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-05-17 14:22:46 -0400 |
commit | 8f9a46dccb938e3f0fcdc0390fcb449ca1f52067 (patch) | |
tree | 6f24da172ce8a29e0f04ed7776ba87009b8cf257 /src/mesa/state_tracker/st_nir.h | |
parent | 52addd90d1406f9b156a384fe8b98dee27aeddf6 (diff) |
mesa/st: add nir pass for lowering builtin uniforms
Signed-off-by: Rob Clark <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_nir.h')
-rw-r--r-- | src/mesa/state_tracker/st_nir.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_nir.h b/src/mesa/state_tracker/st_nir.h new file mode 100644 index 00000000000..1192981bda7 --- /dev/null +++ b/src/mesa/state_tracker/st_nir.h @@ -0,0 +1,31 @@ +/* + * Copyright © 2016 Red Hat + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice (including the next + * paragraph) shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#ifndef ST_NIR_H +#define ST_NIR_H + +typedef struct nir_shader nir_shader; + +void st_nir_lower_builtin(nir_shader *shader); + +#endif /* ST_NIR_H */ |