Mesa (master): i965: Expose brw_reg_from_fs_reg() to other files.

Kenneth Graunke kwg at kemper.freedesktop.org
Tue Nov 5 00:51:06 UTC 2013


Module: Mesa
Branch: master
Commit: 7b4b94a9567b7322e2ef6e28dcd38a23374684ea
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=7b4b94a9567b7322e2ef6e28dcd38a23374684ea

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Fri Nov  1 13:29:37 2013 -0700

i965: Expose brw_reg_from_fs_reg() to other files.

This will be useful for Broadwell code as well.

Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>

---

 src/mesa/drivers/dri/i965/brw_fs.h             |    2 ++
 src/mesa/drivers/dri/i965/brw_fs_generator.cpp |    2 +-
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h
index 675e379..4f97a67 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.h
+++ b/src/mesa/drivers/dri/i965/brw_fs.h
@@ -619,3 +619,5 @@ private:
 bool brw_do_channel_expressions(struct exec_list *instructions);
 bool brw_do_vector_splitting(struct exec_list *instructions);
 bool brw_fs_precompile(struct gl_context *ctx, struct gl_shader_program *prog);
+
+struct brw_reg brw_reg_from_fs_reg(fs_reg *reg);
diff --git a/src/mesa/drivers/dri/i965/brw_fs_generator.cpp b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
index d67c4e4..63ac530 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
@@ -989,7 +989,7 @@ static uint32_t brw_file_from_reg(fs_reg *reg)
    }
 }
 
-static struct brw_reg
+struct brw_reg
 brw_reg_from_fs_reg(fs_reg *reg)
 {
    struct brw_reg brw_reg;




More information about the mesa-commit mailing list