Home | History | Annotate | Download | only in cpp
      1 /*
      2  * Copyright (C) 2012 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 #ifndef ANDROID_RSDISPATCH_H
     18 #define ANDROID_RSDISPATCH_H
     19 
     20 #include "rsInternalDefines.h"
     21 #include "jni.h"
     22 
     23 typedef void (*SetNativeLibDirFnPtr)(RsContext con, const char *nativeLibDir, size_t length);
     24 typedef const void* (*AllocationGetTypeFnPtr)(RsContext con, RsAllocation va);
     25 typedef void (*TypeGetNativeDataFnPtr)(RsContext, RsType, uintptr_t *typeData, uint32_t typeDataSize);
     26 typedef void (*ElementGetNativeDataFnPtr)(RsContext, RsElement, uintptr_t *elemData, uint32_t elemDataSize);
     27 typedef void (*ElementGetSubElementsFnPtr)(RsContext, RsElement, uintptr_t *ids, const char **names, uint32_t *arraySizes, uint32_t dataSize);
     28 typedef RsDevice (*DeviceCreateFnPtr) ();
     29 typedef void (*DeviceDestroyFnPtr) (RsDevice dev);
     30 typedef void (*DeviceSetConfigFnPtr) (RsDevice dev, RsDeviceParam p, int32_t value);
     31 typedef RsContext (*ContextCreateFnPtr)(RsDevice vdev, uint32_t version, uint32_t sdkVersion, RsContextType ct, uint32_t flags);
     32 typedef void (*GetNameFnPtr)(RsContext, void * obj, const char **name);
     33 typedef RsClosure (*ClosureCreateFnPtr)(RsContext, RsScriptKernelID, RsAllocation, RsScriptFieldID*, size_t, int64_t*, size_t, int*, size_t, RsClosure*, size_t, RsScriptFieldID*, size_t);
     34 typedef RsClosure (*InvokeClosureCreateFnPtr)(RsContext, RsScriptInvokeID, const void*, const size_t, const RsScriptFieldID*, const size_t, const int64_t*, const size_t, const int*, const size_t);
     35 typedef void (*ClosureSetArgFnPtr)(RsContext, RsClosure, uint32_t, uintptr_t, int);
     36 typedef void (*ClosureSetGlobalFnPtr)(RsContext, RsClosure, RsScriptFieldID, int64_t, int);
     37 typedef void (*ContextDestroyFnPtr) (RsContext);
     38 typedef RsMessageToClientType (*ContextGetMessageFnPtr) (RsContext, void*, size_t, size_t*, size_t, uint32_t*, size_t);
     39 typedef RsMessageToClientType (*ContextPeekMessageFnPtr) (RsContext, size_t*, size_t, uint32_t*, size_t);
     40 typedef void (*ContextSendMessageFnPtr) (RsContext, uint32_t, const uint8_t*, size_t);
     41 typedef void (*ContextInitToClientFnPtr) (RsContext);
     42 typedef void (*ContextDeinitToClientFnPtr) (RsContext);
     43 typedef RsType (*TypeCreateFnPtr) (RsContext, RsElement, uint32_t, uint32_t, uint32_t, bool, bool, uint32_t);
     44 typedef RsAllocation (*AllocationCreateTypedFnPtr) (RsContext, RsType, RsAllocationMipmapControl, uint32_t, uintptr_t);
     45 typedef RsAllocation (*AllocationCreateStridedFnPtr) (RsContext, RsType, RsAllocationMipmapControl, uint32_t, uintptr_t, size_t);
     46 typedef RsAllocation (*AllocationCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t);
     47 typedef RsAllocation (*AllocationCubeCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t);
     48 typedef RsNativeWindow (*AllocationGetSurfaceFnPtr) (RsContext, RsAllocation);
     49 typedef void (*AllocationSetSurfaceFnPtr) (RsContext, RsAllocation, RsNativeWindow);
     50 typedef void (*ContextFinishFnPtr) (RsContext);
     51 typedef void (*ContextDumpFnPtr) (RsContext, int32_t);
     52 typedef void (*ContextSetPriorityFnPtr) (RsContext, int32_t);
     53 typedef void (*AssignNameFnPtr) (RsContext, RsObjectBase, const char*, size_t);
     54 typedef void (*ObjDestroyFnPtr) (RsContext, RsAsyncVoidPtr);
     55 typedef RsElement (*ElementCreateFnPtr) (RsContext, RsDataType, RsDataKind, bool, uint32_t);
     56 typedef RsElement (*ElementCreate2FnPtr) (RsContext, const RsElement*, size_t, const char**, size_t, const size_t*, const uint32_t*, size_t);
     57 typedef void (*AllocationCopyToBitmapFnPtr) (RsContext, RsAllocation, void*, size_t);
     58 typedef void (*Allocation1DDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, const void*, size_t);
     59 typedef void (*Allocation1DElementDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, const void*, size_t, size_t);
     60 typedef void (*AllocationElementDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, const void*, size_t, size_t);
     61 typedef void (*Allocation2DDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, RsAllocationCubemapFace, uint32_t, uint32_t, const void*, size_t, size_t);
     62 typedef void (*Allocation3DDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, const void*, size_t, size_t);
     63 typedef void (*AllocationGenerateMipmapsFnPtr) (RsContext, RsAllocation);
     64 typedef void (*AllocationReadFnPtr) (RsContext, RsAllocation, void*, size_t);
     65 typedef void (*Allocation1DReadFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, void*, size_t);
     66 typedef void (*AllocationElementReadFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, void*, size_t, size_t);
     67 typedef void (*Allocation2DReadFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, RsAllocationCubemapFace, uint32_t, uint32_t, void*, size_t, size_t);
     68 typedef void (*Allocation3DReadFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, void*, size_t, size_t);
     69 typedef void (*AllocationSyncAllFnPtr) (RsContext, RsAllocation, RsAllocationUsageType);
     70 typedef void (*AllocationResize1DFnPtr) (RsContext, RsAllocation, uint32_t);
     71 typedef void (*AllocationCopy2DRangeFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t);
     72 typedef void (*AllocationCopy3DRangeFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t);
     73 typedef RsSampler (*SamplerCreateFnPtr) (RsContext, RsSamplerValue, RsSamplerValue, RsSamplerValue, RsSamplerValue, RsSamplerValue, float);
     74 typedef void (*ScriptBindAllocationFnPtr) (RsContext, RsScript, RsAllocation, uint32_t);
     75 typedef void (*ScriptSetTimeZoneFnPtr) (RsContext, RsScript, const char*, size_t);
     76 typedef void (*ScriptInvokeFnPtr) (RsContext, RsScript, uint32_t);
     77 typedef void (*ScriptInvokeVFnPtr) (RsContext, RsScript, uint32_t, const void*, size_t);
     78 typedef void (*ScriptForEachFnPtr) (RsContext, RsScript, uint32_t, RsAllocation, RsAllocation, const void*, size_t, const RsScriptCall*, size_t);
     79 typedef void (*ScriptForEachMultiFnPtr) (RsContext, RsScript, uint32_t, RsAllocation*, size_t, RsAllocation, const void*, size_t, const RsScriptCall*, size_t);
     80 typedef void (*ScriptReduceFnPtr) (RsContext, RsScript, uint32_t, RsAllocation*, size_t, RsAllocation, const RsScriptCall*, size_t);
     81 typedef void (*ScriptSetVarIFnPtr) (RsContext, RsScript, uint32_t, int);
     82 typedef void (*ScriptSetVarObjFnPtr) (RsContext, RsScript, uint32_t, RsObjectBase);
     83 typedef void (*ScriptSetVarJFnPtr) (RsContext, RsScript, uint32_t, int64_t);
     84 typedef void (*ScriptSetVarFFnPtr) (RsContext, RsScript, uint32_t, float);
     85 typedef void (*ScriptSetVarDFnPtr) (RsContext, RsScript, uint32_t, double);
     86 typedef void (*ScriptSetVarVFnPtr) (RsContext, RsScript, uint32_t, const void*, size_t);
     87 typedef void (*ScriptGetVarVFnPtr) (RsContext, RsScript, uint32_t, void*, size_t);
     88 typedef void (*ScriptSetVarVEFnPtr) (RsContext, RsScript, uint32_t, const void*, size_t, RsElement, const uint32_t*, size_t);
     89 typedef RsScript (*ScriptCCreateFnPtr) (RsContext, const char*, size_t, const char*, size_t, const char*, size_t);
     90 typedef RsScript (*ScriptIntrinsicCreateFnPtr) (RsContext, uint32_t id, RsElement);
     91 typedef RsScriptKernelID (*ScriptKernelIDCreateFnPtr) (RsContext, RsScript, int, int);
     92 typedef RsScriptInvokeID (*ScriptInvokeIDCreateFnPtr) (RsContext, RsScript, int);
     93 typedef RsScriptFieldID (*ScriptFieldIDCreateFnPtr) (RsContext, RsScript, int);
     94 typedef RsScriptGroup (*ScriptGroupCreateFnPtr) (RsContext, RsScriptKernelID*, size_t, RsScriptKernelID*, size_t, RsScriptKernelID*, size_t, RsScriptFieldID*, size_t, const RsType*, size_t);
     95 typedef RsScriptGroup2 (*ScriptGroup2CreateFnPtr)(RsContext, const char*, size_t, const char*, size_t, RsClosure*, size_t);
     96 typedef void (*ScriptGroupSetOutputFnPtr) (RsContext, RsScriptGroup, RsScriptKernelID, RsAllocation);
     97 typedef void (*ScriptGroupSetInputFnPtr) (RsContext, RsScriptGroup, RsScriptKernelID, RsAllocation);
     98 typedef void (*ScriptGroupExecuteFnPtr) (RsContext, RsScriptGroup);
     99 typedef void (*AllocationIoSendFnPtr) (RsContext, RsAllocation);
    100 typedef void (*AllocationIoReceiveFnPtr) (RsContext, RsAllocation);
    101 typedef void * (*AllocationGetPointerFnPtr) (RsContext, RsAllocation, uint32_t lod, RsAllocationCubemapFace face, uint32_t z, uint32_t array, size_t *stride, size_t stride_len);
    102 
    103 struct dispatchTable {
    104     SetNativeLibDirFnPtr SetNativeLibDir;
    105 
    106     // Inserted by hand based on rs.spec and rs.h
    107     Allocation1DDataFnPtr Allocation1DData;
    108     Allocation1DElementDataFnPtr Allocation1DElementData;
    109     Allocation1DReadFnPtr Allocation1DRead;
    110     Allocation2DDataFnPtr Allocation2DData;
    111     Allocation2DReadFnPtr Allocation2DRead;
    112     Allocation3DDataFnPtr Allocation3DData;
    113     Allocation3DReadFnPtr Allocation3DRead;
    114     AllocationCopy2DRangeFnPtr AllocationCopy2DRange;
    115     AllocationCopy3DRangeFnPtr AllocationCopy3DRange;
    116     AllocationCopyToBitmapFnPtr AllocationCopyToBitmap;
    117     AllocationCreateFromBitmapFnPtr AllocationCreateFromBitmap;
    118     AllocationCreateStridedFnPtr AllocationCreateStrided;
    119     AllocationCreateTypedFnPtr AllocationCreateTyped;
    120     AllocationCubeCreateFromBitmapFnPtr AllocationCubeCreateFromBitmap;
    121     AllocationElementDataFnPtr AllocationElementData;
    122     AllocationElementReadFnPtr AllocationElementRead;
    123     AllocationGenerateMipmapsFnPtr AllocationGenerateMipmaps;
    124     AllocationGetPointerFnPtr AllocationGetPointer;
    125     AllocationGetSurfaceFnPtr AllocationGetSurface;
    126     AllocationGetTypeFnPtr AllocationGetType;
    127     AllocationIoReceiveFnPtr AllocationIoReceive;
    128     AllocationIoSendFnPtr AllocationIoSend;
    129     AllocationReadFnPtr AllocationRead;
    130     AllocationResize1DFnPtr AllocationResize1D;
    131     AllocationSetSurfaceFnPtr AllocationSetSurface;
    132     AllocationSyncAllFnPtr AllocationSyncAll;
    133     AssignNameFnPtr AssignName;
    134     ClosureCreateFnPtr ClosureCreate;
    135     ClosureSetArgFnPtr ClosureSetArg;
    136     ClosureSetGlobalFnPtr ClosureSetGlobal;
    137     ContextCreateFnPtr ContextCreate;
    138     ContextDeinitToClientFnPtr ContextDeinitToClient;
    139     ContextDestroyFnPtr ContextDestroy;
    140     ContextDumpFnPtr ContextDump;
    141     ContextFinishFnPtr ContextFinish;
    142     ContextGetMessageFnPtr ContextGetMessage;
    143     ContextInitToClientFnPtr ContextInitToClient;
    144     ContextPeekMessageFnPtr ContextPeekMessage;
    145     ContextSendMessageFnPtr ContextSendMessage;
    146     ContextSetPriorityFnPtr ContextSetPriority;
    147     DeviceCreateFnPtr DeviceCreate;
    148     DeviceDestroyFnPtr DeviceDestroy;
    149     DeviceSetConfigFnPtr DeviceSetConfig;
    150     ElementCreate2FnPtr ElementCreate2;
    151     ElementCreateFnPtr ElementCreate;
    152     ElementGetNativeDataFnPtr ElementGetNativeData;
    153     ElementGetSubElementsFnPtr ElementGetSubElements;
    154     GetNameFnPtr GetName;
    155     InvokeClosureCreateFnPtr InvokeClosureCreate;
    156     ObjDestroyFnPtr ObjDestroy;
    157     SamplerCreateFnPtr SamplerCreate;
    158     ScriptBindAllocationFnPtr ScriptBindAllocation;
    159     ScriptCCreateFnPtr ScriptCCreate;
    160     ScriptFieldIDCreateFnPtr ScriptFieldIDCreate;
    161     ScriptForEachFnPtr ScriptForEach;
    162     ScriptForEachMultiFnPtr ScriptForEachMulti;
    163     ScriptGetVarVFnPtr ScriptGetVarV;
    164     ScriptGroup2CreateFnPtr ScriptGroup2Create;
    165     ScriptGroupCreateFnPtr ScriptGroupCreate;
    166     ScriptGroupExecuteFnPtr ScriptGroupExecute;
    167     ScriptGroupSetInputFnPtr ScriptGroupSetInput;
    168     ScriptGroupSetOutputFnPtr ScriptGroupSetOutput;
    169     ScriptIntrinsicCreateFnPtr ScriptIntrinsicCreate;
    170     ScriptInvokeFnPtr ScriptInvoke;
    171     ScriptInvokeIDCreateFnPtr ScriptInvokeIDCreate;
    172     ScriptInvokeVFnPtr ScriptInvokeV;
    173     ScriptKernelIDCreateFnPtr ScriptKernelIDCreate;
    174     ScriptReduceFnPtr ScriptReduce;
    175     ScriptSetTimeZoneFnPtr ScriptSetTimeZone;
    176     ScriptSetVarDFnPtr ScriptSetVarD;
    177     ScriptSetVarFFnPtr ScriptSetVarF;
    178     ScriptSetVarIFnPtr ScriptSetVarI;
    179     ScriptSetVarJFnPtr ScriptSetVarJ;
    180     ScriptSetVarObjFnPtr ScriptSetVarObj;
    181     ScriptSetVarVEFnPtr ScriptSetVarVE;
    182     ScriptSetVarVFnPtr ScriptSetVarV;
    183     TypeCreateFnPtr TypeCreate;
    184     TypeGetNativeDataFnPtr TypeGetNativeData;
    185 };
    186 
    187 bool loadSymbols(void* handle, dispatchTable& dispatchTab, int device_api = 0);
    188 
    189 // USAGE_IO for RS Support lib
    190 typedef void (*sAllocationSetSurfaceFnPtr) (JNIEnv *, jobject, RsContext, RsAllocation, RsNativeWindow, dispatchTable);
    191 struct ioSuppDT {
    192     // USAGE_IO_OUTPUT
    193     sAllocationSetSurfaceFnPtr sAllocationSetSurface;
    194 };
    195 
    196 bool loadIOSuppSyms(void* handleIO, ioSuppDT& ioDispatch);
    197 #endif
    198