wined3d: Use a wined3d_string_buffer to dump the intermediate shader code.
Instead of abusing TRACE. There's probably still some room for improvement. There may also be value in dumping things in a format that's compatible with D3D shader assembly, but I don't think it's a priority. Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
649d2dfb3b
commit
e5719e9899
File diff suppressed because it is too large
Load Diff
|
@ -518,14 +518,12 @@ static int shader_skip_unrecognized(const struct wined3d_sm1_data *priv, const D
|
|||
struct wined3d_shader_dst_param dst;
|
||||
|
||||
shader_parse_dst_param(token, token & WINED3D_SM1_ADDRESS_MODE_RELATIVE ? &rel_addr : NULL, &dst);
|
||||
shader_dump_dst_param(&dst, &priv->shader_version);
|
||||
}
|
||||
else
|
||||
{
|
||||
struct wined3d_shader_src_param src;
|
||||
|
||||
shader_parse_src_param(token, token & WINED3D_SM1_ADDRESS_MODE_RELATIVE ? &rel_addr : NULL, &src);
|
||||
shader_dump_src_param(&src, &priv->shader_version);
|
||||
}
|
||||
FIXME("\n");
|
||||
++i;
|
||||
|
|
|
@ -3133,10 +3133,6 @@ void find_vs_compile_args(const struct wined3d_state *state, const struct wined3
|
|||
void string_buffer_clear(struct wined3d_string_buffer *buffer) DECLSPEC_HIDDEN;
|
||||
BOOL string_buffer_init(struct wined3d_string_buffer *buffer) DECLSPEC_HIDDEN;
|
||||
void string_buffer_free(struct wined3d_string_buffer *buffer) DECLSPEC_HIDDEN;
|
||||
void shader_dump_src_param(const struct wined3d_shader_src_param *param,
|
||||
const struct wined3d_shader_version *shader_version) DECLSPEC_HIDDEN;
|
||||
void shader_dump_dst_param(const struct wined3d_shader_dst_param *param,
|
||||
const struct wined3d_shader_version *shader_version) DECLSPEC_HIDDEN;
|
||||
unsigned int shader_find_free_input_register(const struct wined3d_shader_reg_maps *reg_maps,
|
||||
unsigned int max) DECLSPEC_HIDDEN;
|
||||
void shader_generate_main(const struct wined3d_shader *shader, struct wined3d_string_buffer *buffer,
|
||||
|
|
Loading…
Reference in New Issue