summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_tile_size.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-01-20 17:23:11 -0700
committerBrian Paul <brianp@vmware.com>2010-01-20 17:23:11 -0700
commit58903b378188861a6f7a67bbfb07424b73df2a1b (patch)
treedd715d2683c4a6832772dc09933a6bbb60d1200c /src/gallium/drivers/llvmpipe/lp_tile_size.h
parent9b534400d9969eceac46b28145405086dda8c113 (diff)
llvmpipe: put TILE_SIZE #define in its own header
To avoid including lp_tile_soa.h in other places.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_tile_size.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_tile_size.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_tile_size.h b/src/gallium/drivers/llvmpipe/lp_tile_size.h
new file mode 100644
index 0000000000..f0b983c063
--- /dev/null
+++ b/src/gallium/drivers/llvmpipe/lp_tile_size.h
@@ -0,0 +1,39 @@
+/**************************************************************************
+ *
+ * Copyright 2010 VMware, Inc.
+ * All Rights Reserved.
+ *
+ * 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, sub license, 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 NON-INFRINGEMENT.
+ * IN NO EVENT SHALL THE AUTHORS AND/OR ITS SUPPLIERS 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 LP_TILE_SIZE_H
+#define LP_TILE_SIZE_H
+
+
+/**
+ * Tile size (width and height). This needs to be a power of two.
+ */
+#define TILE_ORDER 6
+#define TILE_SIZE (1 << TILE_ORDER)
+
+
+#endif