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

  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_program.c 134 uint8_t constlen; member in struct:stage
162 /* constlen is in units of 4 * vec4: */
163 s[i].constlen = align(s[i].v->constlen, 4) / 4;
171 s[i].constlen = 0;
198 s[VS].constlen = 66;
199 s[FS].constlen = 128 - s[VS].constlen;
203 s[FS].constoff = s[VS].constlen;
290 OUT_RING(ring, A4XX_HLSQ_VS_CONTROL_REG_CONSTLENGTH(s[VS].constlen) |
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_program.c 204 /* seems like vs->constlen + fs->constlen > 256, then CONSTMODE=1 */
205 constmode = ((vp->constlen + fp->constlen) > 256) ? 1 : 0;
246 OUT_RING(ring, A3XX_HLSQ_VS_CONTROL_REG_CONSTLENGTH(vp->constlen) |
249 OUT_RING(ring, A3XX_HLSQ_FS_CONTROL_REG_CONSTLENGTH(fp->constlen) |
271 OUT_RING(ring, A3XX_SP_VS_CTRL_REG1_CONSTLENGTH(vp->constlen) |
273 A3XX_SP_VS_CTRL_REG1_CONSTFOOTPRINT(MAX2(vp->constlen + 1, 0)));
342 OUT_RING(ring, A3XX_SP_FS_CTRL_REG1_CONSTLENGTH(fp->constlen) |
344 A3XX_SP_FS_CTRL_REG1_CONSTFOOTPRINT(MAX2(fp->constlen + 1, 0))
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a5xx/
fd5_compute.c 98 unsigned constlen = align(v->constlen, 4) / 4; local
100 OUT_RING(ring, constlen); /* HLSQ_CS_CONSTLEN */
fd5_program.c 250 uint8_t constlen; member in struct:stage
278 /* constlen is in units of 4 * vec4: */
279 s[i].constlen = align(s[i].v->constlen, 4) / 4;
287 s[i].constlen = 0;
318 constoff += s[i].constlen;
425 OUT_RING(ring, s[VS].constlen); /* HLSQ_VS_CONSTLEN */
429 OUT_RING(ring, s[FS].constlen); /* HLSQ_FS_CONSTLEN */
433 OUT_RING(ring, s[HS].constlen); /* HLSQ_HS_CONSTLEN */
437 OUT_RING(ring, s[DS].constlen); /* HLSQ_DS_CONSTLEN *
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_shader.c 122 /* NOTE: if relative addressing is used, we set constlen in
126 v->constlen = MIN2(255, MAX2(v->constlen, v->info.max_const + 1));
172 "SHADER-DB: %s prog %d/%d: %u const, %u constlen\n",
184 v->constlen);
485 debug_printf("; %d const, %u constlen\n",
487 so->constlen);
555 * unused consts, ie. we could end up w/ constlen that is
560 uint32_t max_const = MIN2(v->num_uniforms, v->constlen);
585 if (v->constlen > offset)
    [all...]
ir3_shader.h 228 unsigned constlen; member in struct:ir3_shader_variant
ir3_compiler_nir.c     [all...]

Completed in 264 milliseconds