diff options
author | Grazvydas Ignotas <[email protected]> | 2017-03-22 01:43:34 +0200 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-03-22 11:33:51 +0000 |
commit | 10d3702a3647842e66433d8b51557cba8b01e7e1 (patch) | |
tree | a943c233a85d5dd06824d0fa566e95a9213400fe /src/util/mesa-sha1.c | |
parent | 64b9a37c3ba61e5822ef84d455422a1dea8fbf39 (diff) |
util/sha1: harmonize _mesa_sha1_* wrappers
Rather than using 3 different ways to wrap _mesa_sha1_*() to SHA1*()
functions (a macro, prototype with implementation in .c and an inline
function), make all 3 inline functions.
Signed-off-by: Grazvydas Ignotas <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/util/mesa-sha1.c')
-rw-r--r-- | src/util/mesa-sha1.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/util/mesa-sha1.c b/src/util/mesa-sha1.c index a14fec97e7c..fa9284627b1 100644 --- a/src/util/mesa-sha1.c +++ b/src/util/mesa-sha1.c @@ -28,12 +28,6 @@ #include "mesa-sha1.h" void -_mesa_sha1_update(struct mesa_sha1 *ctx, const void *data, int size) -{ - SHA1Update(ctx, data, size); -} - -void _mesa_sha1_compute(const void *data, size_t size, unsigned char result[20]) { struct mesa_sha1 ctx; |