summaryrefslogtreecommitdiffstats
path: root/src/mesa/program
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2017-05-30 10:56:36 +1000
committerTimothy Arceri <[email protected]>2017-05-31 11:18:17 +1000
commit4e93da30f0e5efe4ba7f54a5af2b9e58bd74c98d (patch)
tree3da4b6c0d1e4ee4865e9d9a94ba9d5eda593887d /src/mesa/program
parent42fea3622fee6175235b39fb4329d972fb554665 (diff)
mesa: remove _mesa from static function names
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/mesa/program')
-rw-r--r--src/mesa/program/programopt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/program/programopt.c b/src/mesa/program/programopt.c
index 501acde0d0d..f560bce62e4 100644
--- a/src/mesa/program/programopt.c
+++ b/src/mesa/program/programopt.c
@@ -46,7 +46,7 @@
* May be used to implement the position_invariant option.
*/
static void
-_mesa_insert_mvp_dp4_code(struct gl_context *ctx, struct gl_program *vprog)
+insert_mvp_dp4_code(struct gl_context *ctx, struct gl_program *vprog)
{
struct prog_instruction *newInst;
const GLuint origLen = vprog->arb.NumInstructions;
@@ -113,7 +113,7 @@ _mesa_insert_mvp_dp4_code(struct gl_context *ctx, struct gl_program *vprog)
static void
-_mesa_insert_mvp_mad_code(struct gl_context *ctx, struct gl_program *vprog)
+insert_mvp_mad_code(struct gl_context *ctx, struct gl_program *vprog)
{
struct prog_instruction *newInst;
const GLuint origLen = vprog->arb.NumInstructions;
@@ -217,9 +217,9 @@ void
_mesa_insert_mvp_code(struct gl_context *ctx, struct gl_program *vprog)
{
if (ctx->Const.ShaderCompilerOptions[MESA_SHADER_VERTEX].OptimizeForAOS)
- _mesa_insert_mvp_dp4_code( ctx, vprog );
+ insert_mvp_dp4_code( ctx, vprog );
else
- _mesa_insert_mvp_mad_code( ctx, vprog );
+ insert_mvp_mad_code( ctx, vprog );
}