/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | AtomicCounterBufferTest.cpp | 36 GLBuffer atomicCounterBuffer; in TEST_P() local 37 glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, 0, atomicCounterBuffer.get()); in TEST_P() 169 GLBuffer atomicCounterBuffer; in TEST_P() local 170 glBindBuffer(GL_ATOMIC_COUNTER_BUFFER, atomicCounterBuffer); in TEST_P() 173 glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, 0, atomicCounterBuffer); in TEST_P() 207 GLBuffer atomicCounterBuffer; in TEST_P() local 208 glBindBuffer(GL_ATOMIC_COUNTER_BUFFER, atomicCounterBuffer); in TEST_P() 211 glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, 0, atomicCounterBuffer); in TEST_P() 258 GLBuffer atomicCounterBuffer; in TEST_P() local 266 glBindBuffer(GL_ATOMIC_COUNTER_BUFFER, atomicCounterBuffer); in TEST_P() [all …]
|
D | VulkanDescriptorSetTest.cpp | 87 GLBuffer atomicCounterBuffer; in TEST_P() local 88 glBindBuffer(GL_ATOMIC_COUNTER_BUFFER, atomicCounterBuffer); in TEST_P() 89 glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, 0, atomicCounterBuffer); in TEST_P()
|
D | ComputeShaderTest.cpp | 413 GLBuffer atomicCounterBuffer; in TEST_P() local 414 glBindBuffer(GL_ATOMIC_COUNTER_BUFFER, atomicCounterBuffer); in TEST_P() 417 glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, 0, atomicCounterBuffer); in TEST_P() 485 GLBuffer atomicCounterBuffer; in TEST_P() local 486 glBindBuffer(GL_ATOMIC_COUNTER_BUFFER, atomicCounterBuffer); in TEST_P() 489 glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, 0, atomicCounterBuffer); in TEST_P() 597 GLBuffer atomicCounterBuffer; in TEST_P() local 598 glBindBuffer(GL_ATOMIC_COUNTER_BUFFER, atomicCounterBuffer); in TEST_P() 601 glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, 0, atomicCounterBuffer); in TEST_P() 4177 GLBuffer atomicCounterBuffer; in TEST_P() local [all …]
|
D | ProgramBinaryTest.cpp | 1088 GLBuffer atomicCounterBuffer; in TEST_P() local 1089 glBindBuffer(GL_ATOMIC_COUNTER_BUFFER, atomicCounterBuffer); in TEST_P() 1092 glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, 0, atomicCounterBuffer); in TEST_P() 1099 glBindBuffer(GL_ATOMIC_COUNTER_BUFFER, atomicCounterBuffer); in TEST_P()
|
D | GLSLTest.cpp | 4388 GLBuffer atomicCounterBuffer; in TEST_P() local 4389 glBindBuffer(GL_ATOMIC_COUNTER_BUFFER, atomicCounterBuffer); in TEST_P() 4391 glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, 0, atomicCounterBuffer); in TEST_P() 10618 GLBuffer atomicCounterBuffer; in TEST_P() local 10619 glBindBuffer(GL_ATOMIC_COUNTER_BUFFER, atomicCounterBuffer); in TEST_P() 10621 glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, 0, atomicCounterBuffer); in TEST_P() 10717 GLBuffer atomicCounterBuffer; in TEST_P() local 10718 glBindBuffer(GL_ATOMIC_COUNTER_BUFFER, atomicCounterBuffer); in TEST_P() 10720 glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, 0, atomicCounterBuffer); in TEST_P() 10826 GLBuffer atomicCounterBuffer; in TEST_P() local [all …]
|
D | MemoryBarrierTest.cpp | 1894 GLBuffer atomicCounterBuffer; in atomicCounterBitBufferWriteThenAtomic() local 1898 createStorageBuffer(writeResource, atomicCounterBuffer, atomicCounterTextureBuffer, in atomicCounterBitBufferWriteThenAtomic() 1929 createAtomicCounterVerifyProgram(atomicCounterBuffer, &readProgram); in atomicCounterBitBufferWriteThenAtomic() 1952 GLBuffer atomicCounterBuffer; in atomicCounterBitAtomicThenBufferWrite() local 1955 createStorageBuffer(writeResource, atomicCounterBuffer, atomicCounterTextureBuffer, in atomicCounterBitAtomicThenBufferWrite() 1960 createAtomicCounterVerifyProgram(atomicCounterBuffer, &readProgram); in atomicCounterBitAtomicThenBufferWrite()
|
/third_party/glslang/glslang/MachineIndependent/ |
D | ParseContextBase.cpp | 667 TVariable*& atomicCounterBuffer = atomicCounterBuffers[binding]; in growAtomicCounterBlock() local 670 if (atomicCounterBuffer == nullptr) { in growAtomicCounterBlock() 685 atomicCounterBuffer = new TVariable(NewPoolTString(""), blockType, true); in growAtomicCounterBlock() 689 atomicCounterBuffer->getWritableType().getQualifier().layoutBinding = binding; in growAtomicCounterBlock() 693 atomicCounterBuffer->getWritableType().getQualifier().layoutSet = atomicCounterBlockSet; in growAtomicCounterBlock() 703 atomicCounterBuffer->getType().getWritableStruct()->push_back(typeLoc); in growAtomicCounterBlock() 708 if (symbolTable.insert(*atomicCounterBuffer)) in growAtomicCounterBlock() 709 trackLinkage(*atomicCounterBuffer); in growAtomicCounterBlock() 714 symbolTable.amend(*atomicCounterBuffer, bufferNewMember); in growAtomicCounterBlock()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | ProgramExecutable.cpp | 375 AtomicCounterBuffer atomicCounterBuffer; in load() local 376 LoadShaderVariableBuffer(stream, &atomicCounterBuffer); in load() 378 mAtomicCounterBuffers.push_back(atomicCounterBuffer); in load() 583 for (const AtomicCounterBuffer &atomicCounterBuffer : getAtomicCounterBuffers()) in save() local 585 WriteShaderVariableBuffer(stream, atomicCounterBuffer); in save()
|
D | ProgramLinkedResources.cpp | 1396 for (auto &atomicCounterBuffer : *mAtomicCounterBuffersOut) in link() 1398 auto bufferSize = sizeMap.find(atomicCounterBuffer.binding); in link() 1400 atomicCounterBuffer.dataSize = bufferSize->second; in link()
|
D | Program.cpp | 3712 AtomicCounterBuffer atomicCounterBuffer; in linkAtomicCounterBuffers() local 3713 atomicCounterBuffer.binding = uniform.binding; in linkAtomicCounterBuffers() 3714 atomicCounterBuffer.memberIndexes.push_back(index); in linkAtomicCounterBuffers() 3715 atomicCounterBuffer.unionReferencesWith(uniform); in linkAtomicCounterBuffers() 3716 mState.mExecutable->mAtomicCounterBuffers.push_back(atomicCounterBuffer); in linkAtomicCounterBuffers()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | ProgramExecutableVk.cpp | 1362 const gl::AtomicCounterBuffer &atomicCounterBuffer = atomicCounterBuffers[bufferIndex]; in updateAtomicCounterBuffersDescriptorSet() local 1363 uint32_t binding = atomicCounterBuffer.binding; in updateAtomicCounterBuffersDescriptorSet()
|
D | ContextVk.cpp | 1945 for (const gl::AtomicCounterBuffer &atomicCounterBuffer : acbs) in handleDirtyShaderResourcesImpl() local 1947 uint32_t binding = atomicCounterBuffer.binding; in handleDirtyShaderResourcesImpl() 4959 const gl::OffsetBindingPointer<gl::Buffer> *atomicCounterBuffer = in writeAtomicCounterBufferDriverUniformOffsets() local 4961 if (atomicCounterBuffer->get()) in writeAtomicCounterBufferDriverUniformOffsets() 4963 VkDeviceSize offset = atomicCounterBuffer->getOffset(); in writeAtomicCounterBufferDriverUniformOffsets()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
D | StateManagerGL.cpp | 1009 for (const auto &atomicCounterBuffer : program->getState().getAtomicCounterBuffers()) in updateProgramAtomicCounterBufferBindings() local 1011 GLuint binding = atomicCounterBuffer.binding; in updateProgramAtomicCounterBufferBindings()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
D | StateManager11.cpp | 3820 for (const auto &atomicCounterBuffer : program->getState().getAtomicCounterBuffers()) in syncAtomicCounterBuffersForShader() local 3822 GLuint binding = atomicCounterBuffer.binding; in syncAtomicCounterBuffersForShader()
|
D | Renderer11.cpp | 4289 for (const auto &atomicCounterBuffer : program->getState().getAtomicCounterBuffers()) in markRawBufferUsage() local 4291 GLuint binding = atomicCounterBuffer.binding; in markRawBufferUsage()
|