diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-02-09 01:14:34 +0000 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-02-10 00:51:57 +0000 |
commit | 245879725655d47a2e4cbf3434a9842f917fc586 (patch) | |
tree | 9e961f326be155ecc4689bc47672f29a6ae163c3 /src/gallium/drivers/panfrost/midgard | |
parent | 658961aec37d64b68c3fe44833176d442ee0687e (diff) |
panfrost: Elucidate texture op scheduling comment
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium/drivers/panfrost/midgard')
-rw-r--r-- | src/gallium/drivers/panfrost/midgard/midgard_compile.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/gallium/drivers/panfrost/midgard/midgard_compile.c b/src/gallium/drivers/panfrost/midgard/midgard_compile.c index 2dc5555548e..6b6a405d963 100644 --- a/src/gallium/drivers/panfrost/midgard/midgard_compile.c +++ b/src/gallium/drivers/panfrost/midgard/midgard_compile.c @@ -2335,15 +2335,8 @@ schedule_bundle(compiler_context *ctx, midgard_block *block, midgard_instruction break; } -#if 0 - - case TAG_TEXTURE_4: - /* TODO: Schedule texture ops */ - break; -#endif - default: - /* XXX: What happens with textures? */ + /* Texture ops default to single-op-per-bundle scheduling */ break; } |