mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 09:20:13 +01:00
i965: Make brw_set_message_descriptor() non-static.
I want to use this directly from brw_vec4_generator.cpp. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com> Reviewed-by: Kristian Høgsberg <krh@bitplanet.net>
This commit is contained in:
parent
c51f133197
commit
77b338d63b
2 changed files with 9 additions and 1 deletions
|
|
@ -204,6 +204,14 @@ void brw_set_sampler_message(struct brw_codegen *p,
|
|||
unsigned simd_mode,
|
||||
unsigned return_format);
|
||||
|
||||
void brw_set_message_descriptor(struct brw_codegen *p,
|
||||
brw_inst *inst,
|
||||
enum brw_message_target sfid,
|
||||
unsigned msg_length,
|
||||
unsigned response_length,
|
||||
bool header_present,
|
||||
bool end_of_thread);
|
||||
|
||||
void brw_set_dp_read_message(struct brw_codegen *p,
|
||||
brw_inst *insn,
|
||||
unsigned binding_table_index,
|
||||
|
|
|
|||
|
|
@ -534,7 +534,7 @@ brw_set_src1(struct brw_codegen *p, brw_inst *inst, struct brw_reg reg)
|
|||
* \b before filling out any message-specific data. Callers can
|
||||
* choose not to fill in irrelevant bits; they will be zero.
|
||||
*/
|
||||
static void
|
||||
void
|
||||
brw_set_message_descriptor(struct brw_codegen *p,
|
||||
brw_inst *inst,
|
||||
enum brw_message_target sfid,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue