swr: s/unsigned/enum pipe_shader_type/

Reviewed-by: Edward O'Callaghan <funfunctor@folklore1984.net>
This commit is contained in:
Brian Paul 2017-03-05 12:30:01 -07:00
parent f676c700cc
commit 6614b060fb
4 changed files with 7 additions and 6 deletions

View file

@ -76,7 +76,7 @@ bool operator==(const swr_jit_gs_key &lhs, const swr_jit_gs_key &rhs)
static void
swr_generate_sampler_key(const struct lp_tgsi_info &info,
struct swr_context *ctx,
unsigned shader_type,
enum pipe_shader_type shader_type,
struct swr_jit_sampler_key &key)
{
key.nr_samplers = info.base.file_max[TGSI_FILE_SAMPLER] + 1;

View file

@ -748,7 +748,7 @@ swr_update_resource_status(struct pipe_context *pipe,
static void
swr_update_texture_state(struct swr_context *ctx,
unsigned shader_type,
enum pipe_shader_type shader_type,
unsigned num_sampler_views,
swr_jit_texture *textures)
{
@ -802,7 +802,7 @@ swr_update_texture_state(struct swr_context *ctx,
static void
swr_update_sampler_state(struct swr_context *ctx,
unsigned shader_type,
enum pipe_shader_type shader_type,
unsigned num_samplers,
swr_jit_sampler *samplers)
{

View file

@ -74,7 +74,7 @@ struct swr_sampler_dynamic_state {
const struct swr_sampler_static_state *static_state;
unsigned shader_type;
enum pipe_shader_type shader_type;
};
@ -325,7 +325,7 @@ swr_sampler_soa_emit_size_query(const struct lp_build_sampler_soa *base,
struct lp_build_sampler_soa *
swr_sampler_soa_create(const struct swr_sampler_static_state *static_state,
unsigned shader_type)
enum pipe_shader_type shader_type)
{
struct swr_sampler_soa *sampler;

View file

@ -44,4 +44,5 @@ struct swr_sampler_static_state {
*
*/
struct lp_build_sampler_soa *
swr_sampler_soa_create(const struct swr_sampler_static_state *key, unsigned shader_type);
swr_sampler_soa_create(const struct swr_sampler_static_state *key,
enum pipe_shader_type shader_type);