summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/xorg/xorg_exa_tgsi.h
diff options
context:
space:
mode:
authorZack Rusin <zackr@vmware.com>2009-08-24 18:38:46 -0400
committerZack Rusin <zackr@vmware.com>2009-08-24 18:39:01 -0400
commit17076d700c94402f82c22b2e1d99a1753e4a0834 (patch)
treeebc98a12ad8f6b6a5a1e65c71200c51416f79e6f /src/gallium/state_trackers/xorg/xorg_exa_tgsi.h
parent3023328ea721d2b87112e37e119345a9662d7e5e (diff)
xorg: start on code accelerating render
Diffstat (limited to 'src/gallium/state_trackers/xorg/xorg_exa_tgsi.h')
-rw-r--r--src/gallium/state_trackers/xorg/xorg_exa_tgsi.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/xorg/xorg_exa_tgsi.h b/src/gallium/state_trackers/xorg/xorg_exa_tgsi.h
new file mode 100644
index 0000000000..b7245c8e89
--- /dev/null
+++ b/src/gallium/state_trackers/xorg/xorg_exa_tgsi.h
@@ -0,0 +1,17 @@
+#ifndef XORG_EXA_TGSI_H
+#define XORG_EXA_TGSI_H
+
+#include "xorg_exa.h"
+
+struct xorg_shader {
+ void *fs;
+ void *vs;
+};
+
+struct xorg_shader xorg_shader_construct(struct exa_context *exa,
+ int op,
+ PicturePtr src_picture,
+ PicturePtr mask_picture,
+ PicturePtr dst_picture);
+
+#endif