summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/panfrost/pan_wallpaper.h
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2019-02-05 04:32:27 +0000
committerAlyssa Rosenzweig <[email protected]>2019-02-07 01:57:50 +0000
commit7da251fc721360fc28b984507959ebfa0c88c8b2 (patch)
tree9ba04222609b9ad87cf8f5e4af83e62af7d4c49c /src/gallium/drivers/panfrost/pan_wallpaper.h
parent8f4485ef1a8bb0aeda996097f84869fb86bd51d2 (diff)
panfrost: Check in sources for command stream
This patch includes the command stream portion of the driver, complementing the earlier compiler. It provides a base for future work, though it does not integrate with any particular winsys. Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium/drivers/panfrost/pan_wallpaper.h')
-rw-r--r--src/gallium/drivers/panfrost/pan_wallpaper.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/gallium/drivers/panfrost/pan_wallpaper.h b/src/gallium/drivers/panfrost/pan_wallpaper.h
new file mode 100644
index 00000000000..301e45e7227
--- /dev/null
+++ b/src/gallium/drivers/panfrost/pan_wallpaper.h
@@ -0,0 +1,33 @@
+/*
+ * © Copyright 2018 Alyssa Rosenzweig
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ */
+
+#ifndef __PAN_WALLPAPER_H
+#define __PAN_WALLPAPER_H
+
+#include "pipe/p_state.h"
+
+void
+panfrost_draw_wallpaper(struct pipe_context *pipe);
+
+#endif