summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nvfx/nvfx_transfer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/nvfx/nvfx_transfer.h')
-rw-r--r--src/gallium/drivers/nvfx/nvfx_transfer.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/gallium/drivers/nvfx/nvfx_transfer.h b/src/gallium/drivers/nvfx/nvfx_transfer.h
deleted file mode 100644
index 682f428b793..00000000000
--- a/src/gallium/drivers/nvfx/nvfx_transfer.h
+++ /dev/null
@@ -1,24 +0,0 @@
-
-#ifndef NVFX_TRANSFER_H
-#define NVFX_TRANSFER_H
-
-#include "util/u_transfer.h"
-#include "pipe/p_state.h"
-
-
-struct pipe_transfer *
-nvfx_transfer_new(struct pipe_context *pcontext,
- struct pipe_resource *pt,
- unsigned level,
- unsigned usage,
- const struct pipe_box *box);
-
-void *
-nvfx_transfer_map(struct pipe_context *pcontext,
- struct pipe_transfer *ptx);
-void
-nvfx_transfer_unmap(struct pipe_context *pcontext,
- struct pipe_transfer *ptx);
-
-
-#endif