aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2017-05-15 14:08:16 -0400
committerRob Clark <[email protected]>2017-05-16 16:34:21 -0400
commit1303afdd4fa7d2cad0857efd036aac6f0ed4401d (patch)
treefe185b4092390a8c89c61bb32e25f5d62653138a /src/gallium/drivers
parent9235ab65505657a81f98509b0a01688e9c630d39 (diff)
freedreno/a5xx: remove unneeded assert
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/freedreno/a5xx/fd5_emit.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gallium/drivers/freedreno/a5xx/fd5_emit.c b/src/gallium/drivers/freedreno/a5xx/fd5_emit.c
index 0e2d204484f..d959f09fc20 100644
--- a/src/gallium/drivers/freedreno/a5xx/fd5_emit.c
+++ b/src/gallium/drivers/freedreno/a5xx/fd5_emit.c
@@ -174,15 +174,12 @@ struct PACKED bcolor_entry {
#define FD5_BORDER_COLOR_SIZE 0x60
#define FD5_BORDER_COLOR_UPLOAD_SIZE (2 * PIPE_MAX_SAMPLERS * FD5_BORDER_COLOR_SIZE)
-#define FD5_BORDER_COLOR_OFFSET 8 /* TODO probably should be dynamic */
static void
setup_border_colors(struct fd_texture_stateobj *tex, struct bcolor_entry *entries)
{
unsigned i, j;
- debug_assert(tex->num_samplers < FD5_BORDER_COLOR_OFFSET); // TODO
-
for (i = 0; i < tex->num_samplers; i++) {
struct bcolor_entry *e = &entries[i];
struct pipe_sampler_state *sampler = tex->samplers[i];