diff --git a/gpu/src/GrDrawTarget.cpp b/gpu/src/GrDrawTarget.cpp index 1413c6d4e2..7c8e1c8bed 100644 --- a/gpu/src/GrDrawTarget.cpp +++ b/gpu/src/GrDrawTarget.cpp @@ -22,7 +22,7 @@ // recursive helper for creating mask with all the tex coord bits set for // one stage template -static int stage_mask_recur(int stage) { +int stage_mask_recur(int stage) { return GrDrawTarget::StageTexCoordVertexLayoutBit(stage, N) | stage_mask_recur(stage); } @@ -43,7 +43,7 @@ static int stage_mask(int stage) { // recursive helper for creating mask of with all bits set relevant to one // texture coordinate index template -static int tex_coord_mask_recur(int texCoordIdx) { +int tex_coord_mask_recur(int texCoordIdx) { return GrDrawTarget::StageTexCoordVertexLayoutBit(N, texCoordIdx) | tex_coord_mask_recur(texCoordIdx); }