diff options
author | Brian Paul <[email protected]> | 2011-10-07 08:22:35 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-10-07 08:23:24 -0600 |
commit | 5ac96033c52eb2185b9b30bcbb40846d2216d0d3 (patch) | |
tree | dc02edec676b5af9b8dd766af54b0405000542fd /src/mesa/swrast/s_context.h | |
parent | 26b8dfc8cadf0f1a8604fc77b226cc7de005f9ca (diff) |
swrast: s/FetchTexelf/FetchTexel/
Diffstat (limited to 'src/mesa/swrast/s_context.h')
-rw-r--r-- | src/mesa/swrast/s_context.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/swrast/s_context.h b/src/mesa/swrast/s_context.h index d7ad764a9e2..ec8451eb8f0 100644 --- a/src/mesa/swrast/s_context.h +++ b/src/mesa/swrast/s_context.h @@ -115,9 +115,9 @@ struct swrast_texture_image; /** * Fetch a texel from texture image at given position. */ -typedef void (*FetchTexelFuncF)(const struct swrast_texture_image *texImage, - GLint col, GLint row, GLint img, - GLfloat *texelOut); +typedef void (*FetchTexelFunc)(const struct swrast_texture_image *texImage, + GLint col, GLint row, GLint img, + GLfloat *texelOut); typedef void (*StoreTexelFunc)(struct swrast_texture_image *texImage, @@ -144,7 +144,7 @@ struct swrast_texture_image GLint TexelSize; /**< bytes per texel block */ #endif - FetchTexelFuncF FetchTexelf; + FetchTexelFunc FetchTexel; StoreTexelFunc Store; #if 0 |