diff options
author | michal <michal@transistor.(none)> | 2009-12-10 08:46:19 +0100 |
---|---|---|
committer | michal <michal@transistor.(none)> | 2009-12-10 08:46:19 +0100 |
commit | 3710a6f6cc84f46b6e1fb6a6a9f9eb6e7047c4e0 (patch) | |
tree | 0c40aa1578f8c4efa0ec408c2d153db06d4df62e /src/gallium/drivers/r300/r300_context.h | |
parent | 875f6d20b1180a4cafc747bd295b24ae1799a964 (diff) |
r300: Fix after sampler view changes.
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/r300/r300_context.h b/src/gallium/drivers/r300/r300_context.h index 1eba8a8ed12..2edf65797a2 100644 --- a/src/gallium/drivers/r300/r300_context.h +++ b/src/gallium/drivers/r300/r300_context.h @@ -300,9 +300,9 @@ struct r300_context { int sampler_count; /* Scissor state. */ struct r300_atom scissor_state; - /* Texture states. */ - struct r300_texture* textures[8]; - int texture_count; + /* Sampler view states. */ + struct pipe_sampler_view* fragment_sampler_views[8]; + int fragment_sampler_view_count; /* Vertex shader. */ struct r300_vertex_shader* vs; /* Viewport state. */ |