m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/harddoomdev.h
diff options
context:
space:
mode:
authorMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2018-05-28 22:51:33 +0200
committerMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2018-05-28 22:51:33 +0200
commit48683e52caf555cd6ef76384542d7b940d911d6e (patch)
tree5fe95a450a3f853ebdce05db66402fee8a520e5a /harddoomdev.h
parent34d2c2e0137b3ad637a3cfa9c7afbdf636fc6384 (diff)
Copy surface ioctl params from user
Diffstat (limited to 'harddoomdev.h')
-rw-r--r--harddoomdev.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/harddoomdev.h b/harddoomdev.h
index 90d2b51..d37dd59 100644
--- a/harddoomdev.h
+++ b/harddoomdev.h
@@ -15,16 +15,16 @@ void deactivate_intr(void __iomem *iomem, uint32_t intr);
void disable_intr(void __iomem *iomem, uint32_t intr);
void ping_sync(struct doom_data *doom_data);
-void draw_line(struct surface_data *surface_data, struct doomdev_line line);
-void fill_rect(struct surface_data *surface_data, struct doomdev_fill_rect rect);
+void draw_line(struct surface_data *surface_data, struct doomdev_line *line);
+void fill_rect(struct surface_data *surface_data, struct doomdev_fill_rect *rect);
void copy_rect(struct surface_data *dst_data, struct surface_data *src_data,
- struct doomdev_copy_rect rect);
+ struct doomdev_copy_rect *rect);
void draw_column(struct surface_data *surface_data,
- struct texture_data *texture_data, struct doomdev_column column,
+ struct texture_data *texture_data, struct doomdev_column *column,
struct colors_data *colors_data, struct colors_data *trans_data,
uint8_t flags, uint8_t trans_idx);
void draw_span(struct surface_data *surface_data, struct flat_data *flat_data,
- struct doomdev_span span);
+ struct doomdev_span *span);
void draw_background(struct surface_data *surface_data,
struct flat_data *flat_data);