Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
Android.mk | 21-Aug-2018 | 79 | |
README.txt | 21-Aug-2018 | 919 | |
rsdAllocation.cpp | 21-Aug-2018 | 47.2K | |
rsdAllocation.h | 21-Aug-2018 | 8.7K | |
rsdBcc.cpp | 21-Aug-2018 | 6.8K | |
rsdBcc.h | 21-Aug-2018 | 5.6K | |
rsdCore.cpp | 21-Aug-2018 | 13.6K | |
rsdCore.h | 21-Aug-2018 | 1.4K | |
rsdElement.cpp | 21-Aug-2018 | 1.2K | |
rsdElement.h | 21-Aug-2018 | 1.2K | |
rsdFrameBuffer.cpp | 21-Aug-2018 | 3.1K | |
rsdFrameBuffer.h | 21-Aug-2018 | 1.1K | |
rsdFrameBufferObj.cpp | 21-Aug-2018 | 5.4K | |
rsdFrameBufferObj.h | 21-Aug-2018 | 1.6K | |
rsdGL.cpp | 21-Aug-2018 | 19.5K | |
rsdGL.h | 21-Aug-2018 | 3.3K | |
rsdMesh.cpp | 21-Aug-2018 | 1.6K | |
rsdMesh.h | 21-Aug-2018 | 1.1K | |
rsdMeshObj.cpp | 21-Aug-2018 | 7.1K | |
rsdMeshObj.h | 21-Aug-2018 | 2K | |
rsdProgram.cpp | 21-Aug-2018 | 3.9K | |
rsdProgramFragment.h | 21-Aug-2018 | 1.4K | |
rsdProgramRaster.cpp | 21-Aug-2018 | 1.6K | |
rsdProgramRaster.h | 21-Aug-2018 | 1.1K | |
rsdProgramStore.cpp | 21-Aug-2018 | 5.4K | |
rsdProgramStore.h | 21-Aug-2018 | 1.1K | |
rsdProgramVertex.h | 21-Aug-2018 | 1.3K | |
rsdRuntimeStubs.cpp | 21-Aug-2018 | 53.5K | |
rsdSampler.cpp | 21-Aug-2018 | 1.4K | |
rsdSampler.h | 21-Aug-2018 | 1.2K | |
rsdScriptGroup.cpp | 21-Aug-2018 | 2.3K | |
rsdScriptGroup.h | 21-Aug-2018 | 1.9K | |
rsdShader.cpp | 21-Aug-2018 | 23.4K | |
rsdShader.h | 21-Aug-2018 | 4.4K | |
rsdShaderCache.cpp | 21-Aug-2018 | 9.9K | |
rsdShaderCache.h | 21-Aug-2018 | 4.7K | |
rsdType.cpp | 21-Aug-2018 | 1.3K | |
rsdType.h | 21-Aug-2018 | 1.1K | |
rsdVertexArray.cpp | 21-Aug-2018 | 4K | |
rsdVertexArray.h | 21-Aug-2018 | 1.9K | |
runtime/ | 21-Aug-2018 |
1 ---------------------- 2 Slang compiler version 3 ---------------------- 4 5 See SlangVersion in frameworks/compile/slang/slang_version.h. The 6 bitcode wrapper has a field that indicates the version of the slang 7 compiler that produced that bitcode. A bitcode consumer is allowed to 8 make certain assumptions if the version number is sufficiently high. 9 However, only user bitcode has a wrapper -- libclcore.bc does not. 10 Therefore, libclcore.bc must not violate ANY of the guarantees 11 provided at a particular SlangVersion that allow the aforementioned 12 assumptions. This is important because when user bitcode is linked to 13 libclcore.bc (bcc::Script::LinkRuntime()) the linked bitcode is 14 treated as having the same SlangVersion as the user bitcode. This 15 implies that whenever we modify (runtime, driver, bcc) to take 16 advantage of some new SlangVersion guarantee, we may have to update 17 libclcore.bc to conform to that guarantee. 18