HomeSort by relevance Sort by last modified time
    Searched refs:halti (Results 1 - 6 of 6) sorted by null

  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_context.c 278 if (ctx->specs.halti >= 2) {
351 if (ctx->specs.halti >= 1) { /* Only on HALTI1+ */
354 if (ctx->specs.halti >= 2) { /* Only on HALTI2+ */
357 if (ctx->specs.halti >= 3) { /* Only on HALTI3+ */
361 if (ctx->specs.halti >= 4) { /* Only on HALTI4+ */
366 if (ctx->specs.halti >= 5) { /* Only on HALTI5+ */
etnaviv_screen.c 694 screen->specs.halti = 5; /* New GC7000/GC8x00 */
696 screen->specs.halti = 4; /* Old GC7000/GC7400 */
698 screen->specs.halti = 3; /* None? */
700 screen->specs.halti = 2; /* GC2500/GC3000/GC5000/GC6400 */
702 screen->specs.halti = 1; /* GC900/GC4000/GC7000UL */
704 screen->specs.halti = 0; /* GC880/GC2000/GC7000TM */
706 screen->specs.halti = -1; /* GC7000nanolite / pre-GC2000 except GC880 */
707 if (screen->specs.halti >= 0)
708 DBG("etnaviv: GPU arch: HALTI%d\n", screen->specs.halti);
    [all...]
etnaviv_zsa.c 102 COND(disable_zs && ctx->specs.halti < 5, VIVS_PE_DEPTH_CONFIG_DISABLE_ZS);
etnaviv_emit.c 272 if (ctx->specs.halti >= 5) {
287 if (ctx->specs.halti >= 2) {
341 if (ctx->specs.halti >= 2) { /* HALTI2+: NFE_VERTEX_STREAMS */
565 if (ctx->specs.halti >= 5)
606 bool do_uniform_flush = ctx->specs.halti < 5;
618 if (ctx->specs.halti >= 5) { /* ICACHE (HALTI5) */
    [all...]
etnaviv_state.c 139 COND(color_supertiled && ctx->specs.halti >= 5, VIVS_PE_COLOR_FORMAT_SUPER_TILED_NEW);
216 COND(ctx->specs.halti >= 5, VIVS_PE_DEPTH_CONFIG_DISABLE_ZS) /* Needs to be enabled on GC7000, otherwise depth writes hang w/ TS - apparently it does something else now */
548 if (ctx->specs.halti < 5) {
etnaviv_internal.h 63 /* HALTI (gross architecture) level. -1 for pre-HALTI. */
64 int halti : 8; member in struct:etna_specs

Completed in 130 milliseconds