Make softpipe behave more like a real driver by always allocating something

in the state functions.
This commit is contained in:
Zack Rusin 2007-10-03 08:47:36 -04:00
parent 4b6cc36b2b
commit 51345cb3c4
4 changed files with 27 additions and 14 deletions

View file

@ -34,9 +34,9 @@ void *
softpipe_create_blend_state(struct pipe_context *pipe,
const struct pipe_blend_state *blend)
{
/* means that we just want pipe_blend_state and don't have
* anything specific */
return 0;
struct pipe_blend_state *state = malloc(sizeof(struct pipe_blend_state));
memcpy(state, blend, sizeof(struct pipe_blend_state));
return state;
}
void softpipe_bind_blend_state( struct pipe_context *pipe,
@ -50,9 +50,9 @@ void softpipe_bind_blend_state( struct pipe_context *pipe,
}
void softpipe_delete_blend_state(struct pipe_context *pipe,
void *blend )
void *blend)
{
/* do nothing */
free(blend);
}
@ -75,7 +75,9 @@ void *
softpipe_create_alpha_test_state(struct pipe_context *pipe,
const struct pipe_alpha_test_state *alpha)
{
return 0;
struct pipe_alpha_test_state *state = malloc(sizeof(struct pipe_alpha_test_state));
memcpy(state, alpha, sizeof(struct pipe_alpha_test_state));
return state;
}
void
@ -93,14 +95,17 @@ void
softpipe_delete_alpha_test_state(struct pipe_context *pipe,
void *alpha)
{
/* do nothing */
free(alpha);
}
void *
softpipe_create_depth_stencil_state(struct pipe_context *pipe,
const struct pipe_depth_stencil_state *depth_stencil)
{
return 0;
struct pipe_depth_stencil_state *state =
malloc(sizeof(struct pipe_depth_stencil_state));
memcpy(state, depth_stencil, sizeof(struct pipe_depth_stencil_state));
return state;
}
void
@ -117,5 +122,5 @@ softpipe_bind_depth_stencil_state(struct pipe_context *pipe,
void
softpipe_delete_depth_stencil_state(struct pipe_context *pipe, void *depth)
{
/* do nothing */
free(depth);
}

View file

@ -40,7 +40,9 @@ void * softpipe_create_fs_state(struct pipe_context *pipe,
* that now.
*/
return 0;
struct pipe_shader_state *state = malloc(sizeof(struct pipe_shader_state));
memcpy(state, templ, sizeof(struct pipe_shader_state));
return state;
}
void softpipe_bind_fs_state(struct pipe_context *pipe, void *fs)
@ -55,6 +57,7 @@ void softpipe_bind_fs_state(struct pipe_context *pipe, void *fs)
void softpipe_delete_fs_state(struct pipe_context *pipe,
void *shader)
{
free(shader);
}

View file

@ -36,7 +36,10 @@ void *
softpipe_create_rasterizer_state(struct pipe_context *pipe,
const struct pipe_rasterizer_state *setup)
{
return 0;
struct pipe_rasterizer_state *state =
malloc(sizeof(struct pipe_rasterizer_state));
memcpy(state, setup, sizeof(struct pipe_rasterizer_state));
return state;
}
void softpipe_bind_rasterizer_state(struct pipe_context *pipe,
@ -55,7 +58,7 @@ void softpipe_bind_rasterizer_state(struct pipe_context *pipe,
void softpipe_delete_rasterizer_state(struct pipe_context *pipe,
void *rasterizer)
{
/* do nothing */
free(rasterizer);
}

View file

@ -36,7 +36,9 @@ void *
softpipe_create_sampler_state(struct pipe_context *pipe,
const struct pipe_sampler_state *sampler)
{
return 0;
struct pipe_sampler_state *state = malloc(sizeof(struct pipe_sampler_state));
memcpy(state, sampler, sizeof(struct pipe_sampler_state));
return state;
}
void
@ -56,7 +58,7 @@ void
softpipe_delete_sampler_state(struct pipe_context *pipe,
void *sampler)
{
/* do nothing */
free(sampler);
}