Home | History | Annotate | only in /frameworks/rs/driver
Up to higher level directory
NameDateSize
Android.mk21-Aug-201879
README.txt21-Aug-2018919
rsdAllocation.cpp21-Aug-201847.2K
rsdAllocation.h21-Aug-20188.7K
rsdBcc.cpp21-Aug-20186.8K
rsdBcc.h21-Aug-20185.6K
rsdCore.cpp21-Aug-201813.6K
rsdCore.h21-Aug-20181.4K
rsdElement.cpp21-Aug-20181.2K
rsdElement.h21-Aug-20181.2K
rsdFrameBuffer.cpp21-Aug-20183.1K
rsdFrameBuffer.h21-Aug-20181.1K
rsdFrameBufferObj.cpp21-Aug-20185.4K
rsdFrameBufferObj.h21-Aug-20181.6K
rsdGL.cpp21-Aug-201819.5K
rsdGL.h21-Aug-20183.3K
rsdMesh.cpp21-Aug-20181.6K
rsdMesh.h21-Aug-20181.1K
rsdMeshObj.cpp21-Aug-20187.1K
rsdMeshObj.h21-Aug-20182K
rsdProgram.cpp21-Aug-20183.9K
rsdProgramFragment.h21-Aug-20181.4K
rsdProgramRaster.cpp21-Aug-20181.6K
rsdProgramRaster.h21-Aug-20181.1K
rsdProgramStore.cpp21-Aug-20185.4K
rsdProgramStore.h21-Aug-20181.1K
rsdProgramVertex.h21-Aug-20181.3K
rsdRuntimeStubs.cpp21-Aug-201853.5K
rsdSampler.cpp21-Aug-20181.4K
rsdSampler.h21-Aug-20181.2K
rsdScriptGroup.cpp21-Aug-20182.3K
rsdScriptGroup.h21-Aug-20181.9K
rsdShader.cpp21-Aug-201823.4K
rsdShader.h21-Aug-20184.4K
rsdShaderCache.cpp21-Aug-20189.9K
rsdShaderCache.h21-Aug-20184.7K
rsdType.cpp21-Aug-20181.3K
rsdType.h21-Aug-20181.1K
rsdVertexArray.cpp21-Aug-20184K
rsdVertexArray.h21-Aug-20181.9K
runtime/21-Aug-2018

README.txt

      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