mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-29 22:30:24 +01:00
galahad, i915g: Move over a few state asserts.
This commit is contained in:
parent
11fde173c2
commit
cdc1c67b98
2 changed files with 16 additions and 3 deletions
|
|
@ -185,6 +185,12 @@ galahad_bind_fragment_sampler_states(struct pipe_context *_pipe,
|
|||
struct galahad_context *glhd_pipe = galahad_context(_pipe);
|
||||
struct pipe_context *pipe = glhd_pipe->pipe;
|
||||
|
||||
if (num_samplers > PIPE_MAX_SAMPLERS) {
|
||||
glhd_error("%u fragment samplers requested, "
|
||||
"but only %u are permitted by API",
|
||||
num_samplers, PIPE_MAX_SAMPLERS);
|
||||
}
|
||||
|
||||
pipe->bind_fragment_sampler_states(pipe,
|
||||
num_samplers,
|
||||
samplers);
|
||||
|
|
@ -198,6 +204,12 @@ galahad_bind_vertex_sampler_states(struct pipe_context *_pipe,
|
|||
struct galahad_context *glhd_pipe = galahad_context(_pipe);
|
||||
struct pipe_context *pipe = glhd_pipe->pipe;
|
||||
|
||||
if (num_samplers > PIPE_MAX_VERTEX_SAMPLERS) {
|
||||
glhd_error("%u vertex samplers requested, "
|
||||
"but only %u are permitted by API",
|
||||
num_samplers, PIPE_MAX_VERTEX_SAMPLERS);
|
||||
}
|
||||
|
||||
pipe->bind_vertex_sampler_states(pipe,
|
||||
num_samplers,
|
||||
samplers);
|
||||
|
|
@ -447,6 +459,10 @@ galahad_set_constant_buffer(struct pipe_context *_pipe,
|
|||
struct pipe_resource *unwrapped_resource;
|
||||
struct pipe_resource *resource = NULL;
|
||||
|
||||
if (shader >= PIPE_SHADER_TYPES) {
|
||||
glhd_error("Unknown shader type %u", shader);
|
||||
}
|
||||
|
||||
/* XXX hmm? unwrap the input state */
|
||||
if (_resource) {
|
||||
unwrapped_resource = galahad_resource_unwrap(_resource);
|
||||
|
|
|
|||
|
|
@ -294,8 +294,6 @@ static void i915_bind_sampler_states(struct pipe_context *pipe,
|
|||
struct i915_context *i915 = i915_context(pipe);
|
||||
unsigned i;
|
||||
|
||||
assert(num <= PIPE_MAX_SAMPLERS);
|
||||
|
||||
/* Check for no-op */
|
||||
if (num == i915->num_samplers &&
|
||||
!memcmp(i915->sampler, sampler, num * sizeof(void *)))
|
||||
|
|
@ -529,7 +527,6 @@ static void i915_set_constant_buffer(struct pipe_context *pipe,
|
|||
struct i915_context *i915 = i915_context(pipe);
|
||||
draw_flush(i915->draw);
|
||||
|
||||
assert(shader < PIPE_SHADER_TYPES);
|
||||
assert(index == 0);
|
||||
|
||||
/* Make a copy of shader constants.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue