/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
D | r600_pipe.c | 225 rctx->chip_class = rscreen->chip_class; in r600_create_context() 248 switch (rctx->chip_class) { in r600_create_context() 256 rctx->custom_blend_resolve = rctx->chip_class == R700 ? r700_create_resolve_blend(rctx) in r600_create_context() 284 R600_ERR("Unsupported chip class %d.\n", rctx->chip_class); in r600_create_context() 305 if (rctx->chip_class == R600) in r600_create_context() 869 if (rscreen->chip_class <= R700) { in r600_init_tiling() 878 if (rscreen->chip_class <= R700) { in r600_init_tiling() 924 rscreen->chip_class = CAYMAN; in r600_screen_create() 926 rscreen->chip_class = EVERGREEN; in r600_screen_create() 928 rscreen->chip_class = R700; in r600_screen_create() [all …]
|
D | r600_asm.h | 200 enum chip_class chip_class; member 225 void r600_bytecode_init(struct r600_bytecode *bc, enum chip_class chip_class, enum radeon_family fa…
|
D | r600_asm.c | 41 switch (bc->chip_class) { in r600_bytecode_get_num_operands() 257 void r600_bytecode_init(struct r600_bytecode *bc, enum chip_class chip_class, enum radeon_family fa… in r600_bytecode_init() argument 259 if ((chip_class == R600) && in r600_bytecode_init() 269 bc->chip_class = chip_class; in r600_bytecode_init() 344 switch (bc->chip_class) { in is_alu_once_inst() 425 switch (bc->chip_class) { in is_alu_reduction_inst() 446 switch (bc->chip_class) { in is_alu_cube_inst() 461 switch (bc->chip_class) { in is_alu_mova_inst() 495 switch (bc->chip_class) { in is_alu_vec_unit_inst() 551 switch (bc->chip_class) { in is_alu_trans_unit_inst() [all …]
|
D | r600_state_common.c | 97 if (rctx->chip_class >= EVERGREEN && a->cb0_export_16bpc) { in r600_emit_alphatest_state() 186 if (rctx->chip_class <= R700 && in r600_bind_blend_state_internal() 346 if (rctx->chip_class >= EVERGREEN) { in r600_bind_rs_state() 353 if (rctx->chip_class == R600) { in r600_bind_rs_state() 431 …if (rctx->chip_class <= R700 && seamless_cube_map != -1 && seamless_cube_map != rctx->seamless_cub… in r600_bind_samplers() 518 rctx->vertex_buffer_state.atom.num_dw = (rctx->chip_class >= EVERGREEN ? 12 : 11) * in r600_vertex_buffers_dirty() 574 state->atom.num_dw = (rctx->chip_class >= EVERGREEN ? 14 : 13) * in r600_sampler_views_dirty() 637 if (rctx->chip_class != CAYMAN && rtex->cmask_size && rtex->fmask_size) { in r600_set_sampler_views() 645 if (rctx->chip_class <= R700 && in r600_set_sampler_views() 776 if (rctx->chip_class < EVERGREEN && rctx->ps_shader && rctx->vs_shader) { in r600_shader_select() [all …]
|
D | eg_asm.c | 87 if (bc->chip_class == EVERGREEN) /* no EOP on cayman */ in eg_bytecode_cf_build() 116 if (bc->chip_class == EVERGREEN) /* no EOP on cayman */ in eg_bytecode_cf_build()
|
D | r600_blit.c | 153 if (rctx->chip_class == R600 && max_sample > 0) { in r600_blit_decompress_depth() 263 assert(rctx->chip_class != CAYMAN); in r600_blit_decompress_color() 311 assert(rctx->chip_class != CAYMAN); in r600_decompress_color_textures() 312 if (rctx->chip_class == CAYMAN) { in r600_decompress_color_textures() 353 if (rctx->chip_class != CAYMAN && rsrc->fmask_size && rsrc->cmask_size) { in r600_copy_first_sample() 417 rctx->chip_class == CAYMAN ? ~0 : ((1ull << MAX2(1, info->src.res->nr_samples)) - 1); in r600_color_resolve() 704 if (rctx->chip_class != CAYMAN && rsrc->fmask_size && rsrc->cmask_size) { in r600_resource_copy_region() 769 if (rctx->chip_class == CAYMAN) { in r600_resource_copy_region()
|
D | r600_hw_context.c | 47 if (ctx->chip_class >= EVERGREEN) { in r600_get_backend_mask() 911 if (ctx->chip_class == R600) { in r600_flush_framebuffer() 954 if (ctx->chip_class <= R700) { in r600_context_flush() 983 if (ctx->chip_class <= R700) { in r600_context_flush() 1121 if (ctx->chip_class >= EVERGREEN) { in r600_context_streamout_begin() 1206 if (ctx->chip_class >= EVERGREEN) { in r600_context_streamout_end() 1234 if (ctx->chip_class >= EVERGREEN) { in r600_context_streamout_end() 1241 if (ctx->chip_class == R600) { in r600_context_streamout_end()
|
D | r600_shader.c | 87 if (rctx->chip_class >= EVERGREEN) { in r600_pipe_shader() 94 if (rctx->chip_class >= EVERGREEN) { in r600_pipe_shader() 246 r600_bytecode_init(shader_ctx.bc, r600_ctx->chip_class, r600_ctx->family); in r600_compute_shader_create() 249 if (shader_ctx.bc->chip_class == CAYMAN) { in r600_compute_shader_create() 362 if (ctx->bc->chip_class == CAYMAN) in r600_break_from_byte_stream() 364 else if (ctx->bc->chip_class >= EVERGREEN) in r600_break_from_byte_stream() 413 if (ctx->bc->chip_class == CAYMAN) { in r600_fc_from_byte_stream() 416 } else if (ctx->bc->chip_class >= EVERGREEN) { in r600_fc_from_byte_stream() 815 if (ctx->bc->chip_class >= EVERGREEN) { in tgsi_declaration() 1149 if (ctx->bc->chip_class >= EVERGREEN) { in process_twoside_color_inputs() [all …]
|
D | r600_pipe.h | 161 enum chip_class chip_class; member 328 enum chip_class chip_class; member 489 enum chip_class ctx_chip_class,
|
D | evergreen_state.c | 911 if (rctx->chip_class == CAYMAN) { in evergreen_create_rs_state() 1061 if (rscreen->chip_class == CAYMAN) { in evergreen_create_sampler_view() 1078 if (rscreen->chip_class == CAYMAN) in evergreen_create_sampler_view() 1098 if (rscreen->chip_class == CAYMAN) { in evergreen_create_sampler_view() 1186 if (rctx->chip_class == CAYMAN) { in evergreen_get_scissor_rect() 1303 if (rscreen->chip_class == CAYMAN) { in evergreen_init_color_surface() 1323 if (rctx->chip_class == CAYMAN && rtex->resource.b.b.nr_samples > 1) { in evergreen_init_color_surface() 1483 if (rscreen->chip_class == CAYMAN && rtex->resource.b.b.nr_samples > 1) { in evergreen_init_depth_surface() 1759 if (rctx->chip_class != CAYMAN && rtex->fmask_size && rtex->cmask_size) { in evergreen_set_framebuffer_state() 1838 if (rctx->chip_class == CAYMAN) { in evergreen_set_framebuffer_state() [all …]
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_pipe.c | 225 rctx->chip_class = rscreen->chip_class; in r600_create_context() 248 switch (rctx->chip_class) { in r600_create_context() 256 rctx->custom_blend_resolve = rctx->chip_class == R700 ? r700_create_resolve_blend(rctx) in r600_create_context() 284 R600_ERR("Unsupported chip class %d.\n", rctx->chip_class); in r600_create_context() 305 if (rctx->chip_class == R600) in r600_create_context() 869 if (rscreen->chip_class <= R700) { in r600_init_tiling() 878 if (rscreen->chip_class <= R700) { in r600_init_tiling() 924 rscreen->chip_class = CAYMAN; in r600_screen_create() 926 rscreen->chip_class = EVERGREEN; in r600_screen_create() 928 rscreen->chip_class = R700; in r600_screen_create() [all …]
|
D | r600_asm.h | 200 enum chip_class chip_class; member 225 void r600_bytecode_init(struct r600_bytecode *bc, enum chip_class chip_class, enum radeon_family fa…
|
D | r600_asm.c | 41 switch (bc->chip_class) { in r600_bytecode_get_num_operands() 257 void r600_bytecode_init(struct r600_bytecode *bc, enum chip_class chip_class, enum radeon_family fa… in r600_bytecode_init() argument 259 if ((chip_class == R600) && in r600_bytecode_init() 269 bc->chip_class = chip_class; in r600_bytecode_init() 344 switch (bc->chip_class) { in is_alu_once_inst() 425 switch (bc->chip_class) { in is_alu_reduction_inst() 446 switch (bc->chip_class) { in is_alu_cube_inst() 461 switch (bc->chip_class) { in is_alu_mova_inst() 495 switch (bc->chip_class) { in is_alu_vec_unit_inst() 551 switch (bc->chip_class) { in is_alu_trans_unit_inst() [all …]
|
D | r600_state_common.c | 97 if (rctx->chip_class >= EVERGREEN && a->cb0_export_16bpc) { in r600_emit_alphatest_state() 186 if (rctx->chip_class <= R700 && in r600_bind_blend_state_internal() 346 if (rctx->chip_class >= EVERGREEN) { in r600_bind_rs_state() 353 if (rctx->chip_class == R600) { in r600_bind_rs_state() 431 …if (rctx->chip_class <= R700 && seamless_cube_map != -1 && seamless_cube_map != rctx->seamless_cub… in r600_bind_samplers() 518 rctx->vertex_buffer_state.atom.num_dw = (rctx->chip_class >= EVERGREEN ? 12 : 11) * in r600_vertex_buffers_dirty() 574 state->atom.num_dw = (rctx->chip_class >= EVERGREEN ? 14 : 13) * in r600_sampler_views_dirty() 637 if (rctx->chip_class != CAYMAN && rtex->cmask_size && rtex->fmask_size) { in r600_set_sampler_views() 645 if (rctx->chip_class <= R700 && in r600_set_sampler_views() 776 if (rctx->chip_class < EVERGREEN && rctx->ps_shader && rctx->vs_shader) { in r600_shader_select() [all …]
|
D | eg_asm.c | 87 if (bc->chip_class == EVERGREEN) /* no EOP on cayman */ in eg_bytecode_cf_build() 116 if (bc->chip_class == EVERGREEN) /* no EOP on cayman */ in eg_bytecode_cf_build()
|
D | r600_blit.c | 153 if (rctx->chip_class == R600 && max_sample > 0) { in r600_blit_decompress_depth() 263 assert(rctx->chip_class != CAYMAN); in r600_blit_decompress_color() 311 assert(rctx->chip_class != CAYMAN); in r600_decompress_color_textures() 312 if (rctx->chip_class == CAYMAN) { in r600_decompress_color_textures() 353 if (rctx->chip_class != CAYMAN && rsrc->fmask_size && rsrc->cmask_size) { in r600_copy_first_sample() 417 rctx->chip_class == CAYMAN ? ~0 : ((1ull << MAX2(1, info->src.res->nr_samples)) - 1); in r600_color_resolve() 704 if (rctx->chip_class != CAYMAN && rsrc->fmask_size && rsrc->cmask_size) { in r600_resource_copy_region() 769 if (rctx->chip_class == CAYMAN) { in r600_resource_copy_region()
|
D | r600_hw_context.c | 47 if (ctx->chip_class >= EVERGREEN) { in r600_get_backend_mask() 911 if (ctx->chip_class == R600) { in r600_flush_framebuffer() 954 if (ctx->chip_class <= R700) { in r600_context_flush() 983 if (ctx->chip_class <= R700) { in r600_context_flush() 1121 if (ctx->chip_class >= EVERGREEN) { in r600_context_streamout_begin() 1206 if (ctx->chip_class >= EVERGREEN) { in r600_context_streamout_end() 1234 if (ctx->chip_class >= EVERGREEN) { in r600_context_streamout_end() 1241 if (ctx->chip_class == R600) { in r600_context_streamout_end()
|
D | r600_shader.c | 87 if (rctx->chip_class >= EVERGREEN) { in r600_pipe_shader() 94 if (rctx->chip_class >= EVERGREEN) { in r600_pipe_shader() 246 r600_bytecode_init(shader_ctx.bc, r600_ctx->chip_class, r600_ctx->family); in r600_compute_shader_create() 249 if (shader_ctx.bc->chip_class == CAYMAN) { in r600_compute_shader_create() 362 if (ctx->bc->chip_class == CAYMAN) in r600_break_from_byte_stream() 364 else if (ctx->bc->chip_class >= EVERGREEN) in r600_break_from_byte_stream() 413 if (ctx->bc->chip_class == CAYMAN) { in r600_fc_from_byte_stream() 416 } else if (ctx->bc->chip_class >= EVERGREEN) { in r600_fc_from_byte_stream() 815 if (ctx->bc->chip_class >= EVERGREEN) { in tgsi_declaration() 1149 if (ctx->bc->chip_class >= EVERGREEN) { in process_twoside_color_inputs() [all …]
|
D | r600_pipe.h | 161 enum chip_class chip_class; member 328 enum chip_class chip_class; member 489 enum chip_class ctx_chip_class,
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/ |
D | radeonsi_pipe.h | 68 enum chip_class chip_class; member 117 enum chip_class chip_class; member
|
D | radeonsi_pipe.c | 207 rctx->chip_class = rscreen->chip_class; in r600_create_context() 217 switch (rctx->chip_class) { in r600_create_context() 227 R600_ERR("Unsupported chip class %d.\n", rctx->chip_class); in r600_create_context() 678 rscreen->chip_class = TAHITI; in radeonsi_screen_create()
|
D | r600.h | 49 enum chip_class { enum
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | radeonsi_pipe.h | 68 enum chip_class chip_class; member 117 enum chip_class chip_class; member
|
D | radeonsi_pipe.c | 207 rctx->chip_class = rscreen->chip_class; in r600_create_context() 217 switch (rctx->chip_class) { in r600_create_context() 227 R600_ERR("Unsupported chip class %d.\n", rctx->chip_class); in r600_create_context() 678 rscreen->chip_class = TAHITI; in radeonsi_screen_create()
|
D | r600.h | 49 enum chip_class { enum
|