• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

runtime/23-Nov-2023-11,5089,529

Android.mkD23-Nov-202379 52

README.txtD23-Nov-2023919 1816

rsdAllocation.cppD23-Nov-202347.3 KiB1,237993

rsdAllocation.hD23-Nov-20238.7 KiB189138

rsdBcc.cppD23-Nov-20236.8 KiB191147

rsdBcc.hD23-Nov-20235.6 KiB11685

rsdCore.cppD23-Nov-202313.6 KiB378319

rsdCore.hD23-Nov-20231.4 KiB5326

rsdElement.cppD23-Nov-20231.2 KiB4421

rsdElement.hD23-Nov-20231.2 KiB3411

rsdFrameBuffer.cppD23-Nov-20233.1 KiB10064

rsdFrameBuffer.hD23-Nov-20231.1 KiB3110

rsdFrameBufferObj.cppD23-Nov-20235.4 KiB159124

rsdFrameBufferObj.hD23-Nov-20231.6 KiB6035

rsdGL.cppD23-Nov-202319.5 KiB559436

rsdGL.hD23-Nov-20233.3 KiB9665

rsdMesh.cppD23-Nov-20231.6 KiB6135

rsdMesh.hD23-Nov-20231.1 KiB3311

rsdMeshObj.cppD23-Nov-20237.1 KiB202149

rsdMeshObj.hD23-Nov-20232 KiB6528

rsdProgram.cppD23-Nov-20233.9 KiB12185

rsdProgramFragment.hD23-Nov-20231.4 KiB3513

rsdProgramRaster.cppD23-Nov-20231.6 KiB5931

rsdProgramRaster.hD23-Nov-20231.1 KiB3210

rsdProgramStore.cppD23-Nov-20235.4 KiB204155

rsdProgramStore.hD23-Nov-20231.1 KiB3210

rsdProgramVertex.hD23-Nov-20231.3 KiB3413

rsdRuntimeStubs.cppD23-Nov-202353.5 KiB1,4991,170

rsdSampler.cppD23-Nov-20231.4 KiB5630

rsdSampler.hD23-Nov-20231.2 KiB3411

rsdScriptGroup.cppD23-Nov-20232.3 KiB7346

rsdScriptGroup.hD23-Nov-20231.9 KiB4121

rsdShader.cppD23-Nov-202323.4 KiB623531

rsdShader.hD23-Nov-20234.4 KiB14189

rsdShaderCache.cppD23-Nov-20239.9 KiB288219

rsdShaderCache.hD23-Nov-20234.7 KiB160119

rsdType.cppD23-Nov-20231.3 KiB5127

rsdType.hD23-Nov-20231.1 KiB3411

rsdVertexArray.cppD23-Nov-20234 KiB137104

rsdVertexArray.hD23-Nov-20231.9 KiB8245

README.txt

1----------------------
2Slang compiler version
3----------------------
4
5See SlangVersion in frameworks/compile/slang/slang_version.h.  The
6bitcode wrapper has a field that indicates the version of the slang
7compiler that produced that bitcode.  A bitcode consumer is allowed to
8make certain assumptions if the version number is sufficiently high.
9However, only user bitcode has a wrapper -- libclcore.bc does not.
10Therefore, libclcore.bc must not violate ANY of the guarantees
11provided at a particular SlangVersion that allow the aforementioned
12assumptions.  This is important because when user bitcode is linked to
13libclcore.bc (bcc::Script::LinkRuntime()) the linked bitcode is
14treated as having the same SlangVersion as the user bitcode.  This
15implies that whenever we modify (runtime, driver, bcc) to take
16advantage of some new SlangVersion guarantee, we may have to update
17libclcore.bc to conform to that guarantee.
18