From: Tim Rowley Date: Thu, 21 Jul 2016 22:54:25 +0000 (-0600) Subject: swr: [rasterizer jitter] adjust extern "C" block scope X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=61cc012e9a6a0abe67266920327950110ccdcec1;p=mesa.git swr: [rasterizer jitter] adjust extern "C" block scope Signed-off-by: Tim Rowley --- diff --git a/src/gallium/drivers/swr/rasterizer/jitter/jit_api.h b/src/gallium/drivers/swr/rasterizer/jitter/jit_api.h index f5c27f04cdd..05af54008c4 100644 --- a/src/gallium/drivers/swr/rasterizer/jitter/jit_api.h +++ b/src/gallium/drivers/swr/rasterizer/jitter/jit_api.h @@ -47,8 +47,7 @@ #define JITCALL #endif -extern "C" -{ + struct ShaderInfo; @@ -64,6 +63,9 @@ struct JIT_COMPILE_INPUT bool enableJitSampler; }; +extern "C" +{ + ////////////////////////////////////////////////////////////////////////// /// @brief Create JIT context. HANDLE JITCALL JitCreateContext(uint32_t targetSimdWidth, const char* arch); @@ -107,5 +109,5 @@ PFN_SO_FUNC JITCALL JitCompileStreamout(HANDLE hJitContext, const STREAMOUT_COMP /// @param state - blend state to build function from PFN_BLEND_JIT_FUNC JITCALL JitCompileBlend(HANDLE hJitContext, const BLEND_COMPILE_STATE& state); +} -}; // extern "C"