summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/tgsi/tgsi_lowering.h
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2014-09-30 13:14:02 -0700
committerEric Anholt <eric@anholt.net>2014-10-08 17:42:59 +0200
commitf9854e169f54c8a79c7c01733d74979d300d5dba (patch)
treef045d8b052d5db082b9b91f1f399b9abfe1e701a /src/gallium/auxiliary/tgsi/tgsi_lowering.h
parent19df602b39ec03f61edec308ad568be118beb3ac (diff)
downloadexternal_mesa3d-f9854e169f54c8a79c7c01733d74979d300d5dba.zip
external_mesa3d-f9854e169f54c8a79c7c01733d74979d300d5dba.tar.gz
external_mesa3d-f9854e169f54c8a79c7c01733d74979d300d5dba.tar.bz2
gallium: Rename freedreno parts of tgsi_lowering.[ch].
Acked-by: Rob Clark <robclark@freedesktop.org>
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_lowering.h')
-rw-r--r--src/gallium/auxiliary/tgsi/tgsi_lowering.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_lowering.h b/src/gallium/auxiliary/tgsi/tgsi_lowering.h
index 2dd5053..55e1507 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_lowering.h
+++ b/src/gallium/auxiliary/tgsi/tgsi_lowering.h
@@ -24,13 +24,13 @@
* Rob Clark <robclark@freedesktop.org>
*/
-#ifndef FREEDRENO_LOWERING_H_
-#define FREEDRENO_LOWERING_H_
+#ifndef TGSI_LOWERING_H_
+#define TGSI_LOWERING_H_
#include "pipe/p_shader_tokens.h"
#include "tgsi/tgsi_scan.h"
-struct fd_lowering_config
+struct tgsi_lowering_config
{
/* For fragment shaders, generate a shader that emulates two
* sided color by inserting a BGCOLOR input for each COLOR
@@ -81,8 +81,8 @@ struct fd_lowering_config
};
const struct tgsi_token *
-fd_transform_lowering(const struct fd_lowering_config *config,
- const struct tgsi_token *tokens,
- struct tgsi_shader_info *info);
+tgsi_transform_lowering(const struct tgsi_lowering_config *config,
+ const struct tgsi_token *tokens,
+ struct tgsi_shader_info *info);
#endif /* FREEDRENO_LOWERING_H_ */