mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 14:00:16 +01:00
gallium/u_threaded: inline all tc_call functions
There are no calls anymore. It's just a loop with a switch now, which should be implemented as a jump table by the compiler. The only calls are to the pipe_context functions. Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33087>
This commit is contained in:
parent
3692a50398
commit
f8c730158b
1 changed files with 55 additions and 55 deletions
|
|
@ -1035,7 +1035,7 @@ threaded_context_unwrap_sync(struct pipe_context *pipe)
|
|||
type state; \
|
||||
}; \
|
||||
\
|
||||
static uint16_t \
|
||||
static uint16_t ALWAYS_INLINE \
|
||||
tc_call_##func(struct pipe_context *pipe, void *call) \
|
||||
{ \
|
||||
pipe->func(pipe, addr(to_call(call, tc_call_##func)->state)); \
|
||||
|
|
@ -1097,7 +1097,7 @@ struct tc_query_call {
|
|||
struct pipe_query *query;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_destroy_query(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct pipe_query *query = to_call(call, tc_query_call)->query;
|
||||
|
|
@ -1118,7 +1118,7 @@ tc_destroy_query(struct pipe_context *_pipe, struct pipe_query *query)
|
|||
tc_add_call(tc, TC_CALL_destroy_query, tc_query_call)->query = query;
|
||||
}
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_begin_query(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
pipe->begin_query(pipe, to_call(call, tc_query_call)->query);
|
||||
|
|
@ -1141,7 +1141,7 @@ struct tc_end_query_call {
|
|||
struct pipe_query *query;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_end_query(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_end_query_call *p = to_call(call, tc_end_query_call);
|
||||
|
|
@ -1212,7 +1212,7 @@ struct tc_query_result_resource {
|
|||
struct pipe_resource *resource;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_get_query_result_resource(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_query_result_resource *p = to_call(call, tc_query_result_resource);
|
||||
|
|
@ -1253,7 +1253,7 @@ struct tc_render_condition {
|
|||
struct pipe_query *query;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_render_condition(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_render_condition *p = to_call(call, tc_render_condition);
|
||||
|
|
@ -1358,7 +1358,7 @@ struct tc_sampler_states {
|
|||
void *slot[0]; /* more will be allocated if needed */
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_bind_sampler_states(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_sampler_states *p = (struct tc_sampler_states *)call;
|
||||
|
|
@ -1400,7 +1400,7 @@ struct tc_framebuffer {
|
|||
struct pipe_framebuffer_state state;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_framebuffer_state(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct pipe_framebuffer_state *p = &to_call(call, tc_framebuffer)->state;
|
||||
|
|
@ -1497,7 +1497,7 @@ struct tc_tess_state {
|
|||
float state[6];
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_tess_state(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
float *p = to_call(call, tc_tess_state)->state;
|
||||
|
|
@ -1523,7 +1523,7 @@ struct tc_patch_vertices {
|
|||
uint8_t patch_vertices;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_patch_vertices(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
uint8_t patch_vertices = to_call(call, tc_patch_vertices)->patch_vertices;
|
||||
|
|
@ -1552,7 +1552,7 @@ struct tc_constant_buffer {
|
|||
struct pipe_constant_buffer cb;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_constant_buffer(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_constant_buffer *p = (struct tc_constant_buffer *)call;
|
||||
|
|
@ -1631,7 +1631,7 @@ struct tc_inlinable_constants {
|
|||
uint32_t values[MAX_INLINABLE_UNIFORMS];
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_inlinable_constants(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_inlinable_constants *p = to_call(call, tc_inlinable_constants);
|
||||
|
|
@ -1660,7 +1660,7 @@ struct tc_sample_locations {
|
|||
};
|
||||
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_sample_locations(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_sample_locations *p = (struct tc_sample_locations *)call;
|
||||
|
|
@ -1687,7 +1687,7 @@ struct tc_scissors {
|
|||
struct pipe_scissor_state slot[0]; /* more will be allocated if needed */
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_scissor_states(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_scissors *p = (struct tc_scissors *)call;
|
||||
|
|
@ -1716,7 +1716,7 @@ struct tc_viewports {
|
|||
struct pipe_viewport_state slot[0]; /* more will be allocated if needed */
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_viewport_states(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_viewports *p = (struct tc_viewports *)call;
|
||||
|
|
@ -1749,7 +1749,7 @@ struct tc_window_rects {
|
|||
struct pipe_scissor_state slot[0]; /* more will be allocated if needed */
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_window_rectangles(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_window_rects *p = (struct tc_window_rects *)call;
|
||||
|
|
@ -1778,7 +1778,7 @@ struct tc_sampler_views {
|
|||
struct pipe_sampler_view *slot[0]; /* more will be allocated if needed */
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_sampler_views(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_sampler_views *p = (struct tc_sampler_views *)call;
|
||||
|
|
@ -1862,7 +1862,7 @@ struct tc_shader_images {
|
|||
struct pipe_image_view slot[0]; /* more will be allocated if needed */
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_shader_images(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_shader_images *p = (struct tc_shader_images *)call;
|
||||
|
|
@ -1958,7 +1958,7 @@ struct tc_shader_buffers {
|
|||
struct pipe_shader_buffer slot[0]; /* more will be allocated if needed */
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_shader_buffers(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_shader_buffers *p = (struct tc_shader_buffers *)call;
|
||||
|
|
@ -2034,7 +2034,7 @@ tc_set_shader_buffers(struct pipe_context *_pipe,
|
|||
tc->shader_buffers_writeable_mask[shader] |= writable_bitmask << start;
|
||||
}
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_vertex_buffers(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_vertex_buffers *p = (struct tc_vertex_buffers *)call;
|
||||
|
|
@ -2109,7 +2109,7 @@ struct tc_stream_outputs {
|
|||
unsigned offsets[PIPE_MAX_SO_BUFFERS];
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_stream_output_targets(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_stream_outputs *p = to_call(call, tc_stream_outputs);
|
||||
|
|
@ -2280,7 +2280,7 @@ struct tc_make_texture_handle_resident {
|
|||
uint64_t handle;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_make_texture_handle_resident(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_make_texture_handle_resident *p =
|
||||
|
|
@ -2334,7 +2334,7 @@ struct tc_make_image_handle_resident {
|
|||
uint64_t handle;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_make_image_handle_resident(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_make_image_handle_resident *p =
|
||||
|
|
@ -2377,7 +2377,7 @@ struct tc_replace_buffer_storage {
|
|||
tc_replace_buffer_storage_func func;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_replace_buffer_storage(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_replace_buffer_storage *p = to_call(call, tc_replace_buffer_storage);
|
||||
|
|
@ -2721,7 +2721,7 @@ struct tc_transfer_flush_region {
|
|||
struct pipe_transfer *transfer;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_transfer_flush_region(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_transfer_flush_region *p = to_call(call, tc_transfer_flush_region);
|
||||
|
|
@ -2820,7 +2820,7 @@ struct tc_buffer_unmap {
|
|||
};
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_buffer_unmap(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_buffer_unmap *p = to_call(call, tc_buffer_unmap);
|
||||
|
|
@ -2932,7 +2932,7 @@ struct tc_texture_unmap {
|
|||
struct pipe_transfer *transfer;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_texture_unmap(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_texture_unmap *p = (struct tc_texture_unmap *) call;
|
||||
|
|
@ -2970,7 +2970,7 @@ struct tc_buffer_subdata {
|
|||
char slot[0]; /* more will be allocated if needed */
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_buffer_subdata(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_buffer_subdata *p = (struct tc_buffer_subdata *)call;
|
||||
|
|
@ -3096,7 +3096,7 @@ struct tc_texture_subdata {
|
|||
char slot[0]; /* more will be allocated if needed */
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_texture_subdata(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_texture_subdata *p = (struct tc_texture_subdata *)call;
|
||||
|
|
@ -3278,7 +3278,7 @@ struct tc_string_marker {
|
|||
char slot[0]; /* more will be allocated if needed */
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_emit_string_marker(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_string_marker *p = (struct tc_string_marker *)call;
|
||||
|
|
@ -3367,7 +3367,7 @@ struct tc_fence_call {
|
|||
struct pipe_fence_handle *fence;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_fence_server_sync(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct pipe_fence_handle *fence = to_call(call, tc_fence_call)->fence;
|
||||
|
|
@ -3422,7 +3422,7 @@ struct tc_context_param {
|
|||
unsigned value;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_set_context_param(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_context_param *p = to_call(call, tc_context_param);
|
||||
|
|
@ -3496,7 +3496,7 @@ tc_flush_queries(struct threaded_context *tc)
|
|||
}
|
||||
}
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_flush_deferred(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_flush_deferred_call *p = to_call(call, tc_flush_deferred_call);
|
||||
|
|
@ -3508,7 +3508,7 @@ tc_call_flush_deferred(struct pipe_context *pipe, void *call)
|
|||
return call_size(tc_flush_deferred_call);
|
||||
}
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_flush(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_flush_call *p = to_call(call, tc_flush_call);
|
||||
|
|
@ -3597,7 +3597,7 @@ struct tc_draw_single_drawid {
|
|||
unsigned drawid_offset;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_draw_single_drawid(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_draw_single_drawid *info_drawid = to_call(call, tc_draw_single_drawid);
|
||||
|
|
@ -3665,7 +3665,7 @@ is_next_call_a_mergeable_draw(struct tc_draw_single *first,
|
|||
DRAW_INFO_SIZE_WITHOUT_MIN_MAX_INDEX) == 0;
|
||||
}
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_draw_single(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
/* Draw call merging. */
|
||||
|
|
@ -3736,7 +3736,7 @@ struct tc_draw_indirect {
|
|||
struct pipe_draw_indirect_info indirect;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_draw_indirect(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_draw_indirect *info = to_call(call, tc_draw_indirect);
|
||||
|
|
@ -3761,7 +3761,7 @@ struct tc_draw_multi {
|
|||
struct pipe_draw_start_count_bias slot[]; /* variable-sized array */
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_draw_multi(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_draw_multi *info = (struct tc_draw_multi*)call;
|
||||
|
|
@ -4194,7 +4194,7 @@ is_next_call_a_mergeable_draw_vstate(struct tc_draw_vstate_single *first,
|
|||
offsetof(struct tc_draw_vstate_single, state));
|
||||
}
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_draw_vstate_single(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
/* Draw call merging. */
|
||||
|
|
@ -4241,7 +4241,7 @@ struct tc_draw_vstate_multi {
|
|||
struct pipe_draw_start_count_bias slot[0];
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_draw_vstate_multi(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_draw_vstate_multi *info = (struct tc_draw_vstate_multi*)call;
|
||||
|
|
@ -4340,7 +4340,7 @@ struct tc_launch_grid_call {
|
|||
struct pipe_grid_info info;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_launch_grid(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct pipe_grid_info *p = &to_call(call, tc_launch_grid_call)->info;
|
||||
|
|
@ -4370,7 +4370,7 @@ tc_launch_grid(struct pipe_context *_pipe,
|
|||
tc_add_all_compute_bindings_to_buffer_list(tc);
|
||||
}
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_resource_copy_region(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_resource_copy_region *p = to_call(call, tc_resource_copy_region);
|
||||
|
|
@ -4425,7 +4425,7 @@ struct tc_blit_call {
|
|||
struct pipe_blit_info info;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_blit(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct pipe_blit_info *blit = &to_call(call, tc_blit_call)->info;
|
||||
|
|
@ -4485,7 +4485,7 @@ struct tc_generate_mipmap {
|
|||
struct pipe_resource *res;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_generate_mipmap(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_generate_mipmap *p = to_call(call, tc_generate_mipmap);
|
||||
|
|
@ -4541,7 +4541,7 @@ struct tc_resource_call {
|
|||
struct pipe_resource *resource;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_flush_resource(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct pipe_resource *resource = to_call(call, tc_resource_call)->resource;
|
||||
|
|
@ -4562,7 +4562,7 @@ tc_flush_resource(struct pipe_context *_pipe, struct pipe_resource *resource)
|
|||
tc_set_resource_reference(&call->resource, resource);
|
||||
}
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_invalidate_resource(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct pipe_resource *resource = to_call(call, tc_resource_call)->resource;
|
||||
|
|
@ -4611,7 +4611,7 @@ struct tc_clear {
|
|||
union pipe_color_union color;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_clear(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_clear *p = to_call(call, tc_clear);
|
||||
|
|
@ -4668,7 +4668,7 @@ struct tc_clear_render_target {
|
|||
struct pipe_surface *dst;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_clear_render_target(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_clear_render_target *p = to_call(call, tc_clear_render_target);
|
||||
|
|
@ -4714,7 +4714,7 @@ struct tc_clear_depth_stencil {
|
|||
};
|
||||
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_clear_depth_stencil(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_clear_depth_stencil *p = to_call(call, tc_clear_depth_stencil);
|
||||
|
|
@ -4756,7 +4756,7 @@ struct tc_clear_buffer {
|
|||
struct pipe_resource *res;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_clear_buffer(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_clear_buffer *p = to_call(call, tc_clear_buffer);
|
||||
|
|
@ -4797,7 +4797,7 @@ struct tc_clear_texture {
|
|||
struct pipe_resource *res;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_clear_texture(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_clear_texture *p = to_call(call, tc_clear_texture);
|
||||
|
|
@ -4831,7 +4831,7 @@ struct tc_resource_commit {
|
|||
struct pipe_resource *res;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_resource_commit(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_resource_commit *p = to_call(call, tc_resource_commit);
|
||||
|
|
@ -4910,7 +4910,7 @@ tc_new_intel_perf_query_obj(struct pipe_context *_pipe, unsigned query_index)
|
|||
return pipe->new_intel_perf_query_obj(pipe, query_index);
|
||||
}
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_begin_intel_perf_query(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
(void)pipe->begin_intel_perf_query(pipe, to_call(call, tc_query_call)->query);
|
||||
|
|
@ -4928,7 +4928,7 @@ tc_begin_intel_perf_query(struct pipe_context *_pipe, struct pipe_query *q)
|
|||
return true;
|
||||
}
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_end_intel_perf_query(struct pipe_context *pipe, void *call)
|
||||
{
|
||||
pipe->end_intel_perf_query(pipe, to_call(call, tc_query_call)->query);
|
||||
|
|
@ -4997,7 +4997,7 @@ struct tc_callback_call {
|
|||
void *data;
|
||||
};
|
||||
|
||||
static uint16_t
|
||||
static uint16_t ALWAYS_INLINE
|
||||
tc_call_callback(UNUSED struct pipe_context *pipe, void *call)
|
||||
{
|
||||
struct tc_callback_call *p = to_call(call, tc_callback_call);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue