mesa: move gl_external_samplers() to program.[ch]
authorBrian Paul <brianp@vmware.com>
Wed, 17 Jan 2018 04:53:29 +0000 (21:53 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 17 Jan 2018 18:17:56 +0000 (11:17 -0700)
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>
src/mesa/main/mtypes.h
src/mesa/program/program.c
src/mesa/program/program.h

index 226eb94da917ddaa1acbfb88befcafc7fbbf1d7a..1f1792e42631fb4fd8b0ecd552811ab08e677f64 100644 (file)
@@ -46,7 +46,6 @@
 #include "compiler/shader_info.h"
 #include "main/formats.h"       /* MESA_FORMAT_COUNT */
 #include "compiler/glsl/list.h"
-#include "util/bitscan.h"
 #include "util/simple_mtx.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
  * was skipped due to the shader matching one that's been seen before by
index faf5b7fa28accfba0354232369ccebb30680d147..220efc35394eb49a70e531c1066b868ce9f02650 100644 (file)
@@ -39,6 +39,7 @@
 #include "prog_cache.h"
 #include "prog_parameter.h"
 #include "prog_instruction.h"
+#include "util/bitscan.h"
 #include "util/ralloc.h"
 #include "util/u_atomic.h"
 
@@ -547,3 +548,19 @@ _mesa_get_min_invocations_per_fragment(struct gl_context *ctx,
    }
    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;
+}
index 0e105c35fc291fa3ff954c1d71c5312793f972b0..376da7b2d41403741d2a64669eaa60ef69c88deb 100644 (file)
@@ -158,6 +158,11 @@ _mesa_shader_stage_to_program(unsigned stage)
    return GL_VERTEX_PROGRAM_ARB;
 }
 
+
+GLbitfield
+gl_external_samplers(const struct gl_program *prog);
+
+
 #ifdef __cplusplus
 } /* extern "C" */
 #endif