Skip to content

Commit

Permalink
Add missing static
Browse files Browse the repository at this point in the history
  • Loading branch information
capehill committed Sep 29, 2019
1 parent c042146 commit f51cdf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions warp3dnova_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -2505,7 +2505,7 @@ static W3DN_ErrorCode W3DN_TexSetParameters(struct W3DN_Context_s *self, W3DN_Te
return result;
}

W3DN_ErrorCode W3DN_TexUpdateImage(struct W3DN_Context_s *self, W3DN_Texture *texture, void *source,
static W3DN_ErrorCode W3DN_TexUpdateImage(struct W3DN_Context_s *self, W3DN_Texture *texture, void *source,
uint32 level, uint32 arrayIdx, uint32 srcBytesPerRow, uint32 srcRowsPerLayer)
{
W3DN_ErrorCode result = W3DNEC_SUCCESS;
Expand All @@ -2528,7 +2528,7 @@ W3DN_ErrorCode W3DN_TexUpdateImage(struct W3DN_Context_s *self, W3DN_Texture *te
return result;
}

W3DN_ErrorCode W3DN_TexUpdateSubImage(struct W3DN_Context_s *self, W3DN_Texture *texture, void *source,
static W3DN_ErrorCode W3DN_TexUpdateSubImage(struct W3DN_Context_s *self, W3DN_Texture *texture, void *source,
uint32 level, uint32 arrayIdx, uint32 srcBytesPerRow, uint32 srcRowsPerLayer,
uint32 dstX, uint32 dstY, uint32 dstLayer, uint32 width, uint32 height, uint32 depth)
{
Expand Down

0 comments on commit f51cdf0

Please sign in to comment.