panfrost: Minor comment cleanup (version detection)

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
This commit is contained in:
Alyssa Rosenzweig 2019-03-12 22:42:16 +00:00
parent c119c282af
commit 23e0135723
1 changed files with 3 additions and 2 deletions

View File

@ -2408,8 +2408,9 @@ panfrost_create_context(struct pipe_screen *screen, void *priv, unsigned flags)
unsigned gpu_id;
gpu_id = pscreen->driver->query_gpu_version(pscreen);
ctx->is_t6xx = gpu_id <= 0x0750; /* For now, this flag means t76x or less */
ctx->require_sfbd = gpu_id < 0x0750; /* t76x is the first to support MFD */
ctx->is_t6xx = gpu_id <= 0x0750; /* For now, this flag means T760 or less */
ctx->require_sfbd = gpu_id < 0x0750; /* T760 is the first to support MFBD */
gallium->screen = screen;