diff options
author | Guo Yejun <yejun.guo@intel.com> | 2014-06-03 02:13:54 +0800 |
---|---|---|
committer | Zhigang Gong <zhigang.gong@intel.com> | 2014-06-04 10:14:48 +0800 |
commit | 7909661befc1b4064ca8c22bb1471bb6a7d9e39c (patch) | |
tree | c6a0bed7b67cb98ae73eccb800cb7d2156524736 /backend/src/gbe_bin_interpreter.cpp | |
parent | 871389f906d6f6d33703851eee7111390c562bc5 (diff) |
refine code for the usage of set_image_base_index
In libgbe.so and libgbeinterp.so, the same function pointer name
gbe_set_image_base_index is used for a unified source code.
In libcl.so, function pointer names begin with compiler_* point to
the functions from libgbe.so, function pointer names begin with
gbe_* point to the functions from libgbeinterp.so.
Signed-off-by: Guo Yejun <yejun.guo@intel.com>
Reviewed-by: Zhigang Gong <zhigang.gong@linux.intel.com>
Diffstat (limited to 'backend/src/gbe_bin_interpreter.cpp')
-rw-r--r-- | backend/src/gbe_bin_interpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/src/gbe_bin_interpreter.cpp b/backend/src/gbe_bin_interpreter.cpp index bd160c30..64bf5c4b 100644 --- a/backend/src/gbe_bin_interpreter.cpp +++ b/backend/src/gbe_bin_interpreter.cpp @@ -61,7 +61,7 @@ struct BinInterpCallBackInitializer gbe_kernel_get_sampler_data = gbe::kernelGetSamplerData; gbe_kernel_get_image_data = gbe::kernelGetImageData; gbe_get_image_base_index = gbe::getImageBaseIndex; - gbe_set_image_base_index_interp = gbe::setImageBaseIndex; + gbe_set_image_base_index = gbe::setImageBaseIndex; } ~BinInterpCallBackInitializer() { |