mesa: move gl_external_samplers() to program.[ch]

The function is only called from a couple places.  It doesn't make
sense to have it in mtypes.h

Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
Brian Paul
2018-01-16 21:53:29 -07:00
parent 6dc8896726
commit 7421e34dd6
3 changed files with 22 additions and 17 deletions

View File

@@ -46,7 +46,6 @@
#include "compiler/shader_info.h" #include "compiler/shader_info.h"
#include "main/formats.h" /* MESA_FORMAT_COUNT */ #include "main/formats.h" /* MESA_FORMAT_COUNT */
#include "compiler/glsl/list.h" #include "compiler/glsl/list.h"
#include "util/bitscan.h"
#include "util/simple_mtx.h" #include "util/simple_mtx.h"
#include "util/u_dynarray.h" #include "util/u_dynarray.h"
@@ -2548,22 +2547,6 @@ struct gl_linked_shader
}; };
static inline GLbitfield
gl_external_samplers(const struct gl_program *prog)
{
GLbitfield external_samplers = 0;
GLbitfield mask = prog->SamplersUsed;
while (mask) {
int idx = u_bit_scan(&mask);
if (prog->sh.SamplerTargets[idx] == TEXTURE_EXTERNAL_INDEX)
external_samplers |= (1 << idx);
}
return external_samplers;
}
/** /**
* Compile status enum. compile_skipped is used to indicate the compile * Compile status enum. compile_skipped is used to indicate the compile
* was skipped due to the shader matching one that's been seen before by * was skipped due to the shader matching one that's been seen before by

View File

@@ -39,6 +39,7 @@
#include "prog_cache.h" #include "prog_cache.h"
#include "prog_parameter.h" #include "prog_parameter.h"
#include "prog_instruction.h" #include "prog_instruction.h"
#include "util/bitscan.h"
#include "util/ralloc.h" #include "util/ralloc.h"
#include "util/u_atomic.h" #include "util/u_atomic.h"
@@ -547,3 +548,19 @@ _mesa_get_min_invocations_per_fragment(struct gl_context *ctx,
} }
return 1; return 1;
} }
GLbitfield
gl_external_samplers(const struct gl_program *prog)
{
GLbitfield external_samplers = 0;
GLbitfield mask = prog->SamplersUsed;
while (mask) {
int idx = u_bit_scan(&mask);
if (prog->sh.SamplerTargets[idx] == TEXTURE_EXTERNAL_INDEX)
external_samplers |= (1 << idx);
}
return external_samplers;
}

View File

@@ -158,6 +158,11 @@ _mesa_shader_stage_to_program(unsigned stage)
return GL_VERTEX_PROGRAM_ARB; return GL_VERTEX_PROGRAM_ARB;
} }
GLbitfield
gl_external_samplers(const struct gl_program *prog);
#ifdef __cplusplus #ifdef __cplusplus
} /* extern "C" */ } /* extern "C" */
#endif #endif