Commit 920cb58b by Shahbaz Youssefi Committed by Commit Bot

Vulkan: Fix MemoryBarrier function name typos

Bug: angleproject:5070 Change-Id: Ic0c3de4380d02d150e2f52690ded9dfcc07b4575 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2747854Reviewed-by: 's avatarShahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: 's avatarIan Elliott <ianelliott@google.com> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
parent c7c38731
...@@ -431,7 +431,7 @@ ContextVk::ContextVk(const gl::State &state, gl::ErrorSet *errorSet, RendererVk ...@@ -431,7 +431,7 @@ ContextVk::ContextVk(const gl::State &state, gl::ErrorSet *errorSet, RendererVk
DIRTY_BIT_DESCRIPTOR_SETS, DIRTY_BIT_DRIVER_UNIFORMS_BINDING}; DIRTY_BIT_DESCRIPTOR_SETS, DIRTY_BIT_DRIVER_UNIFORMS_BINDING};
mGraphicsDirtyBitHandlers[DIRTY_BIT_MEMORY_BARRIER] = mGraphicsDirtyBitHandlers[DIRTY_BIT_MEMORY_BARRIER] =
&ContextVk::handleDirtyGraphicsMemorybarrier; &ContextVk::handleDirtyGraphicsMemoryBarrier;
mGraphicsDirtyBitHandlers[DIRTY_BIT_EVENT_LOG] = &ContextVk::handleDirtyGraphicsEventLog; mGraphicsDirtyBitHandlers[DIRTY_BIT_EVENT_LOG] = &ContextVk::handleDirtyGraphicsEventLog;
mGraphicsDirtyBitHandlers[DIRTY_BIT_DEFAULT_ATTRIBS] = mGraphicsDirtyBitHandlers[DIRTY_BIT_DEFAULT_ATTRIBS] =
&ContextVk::handleDirtyGraphicsDefaultAttribs; &ContextVk::handleDirtyGraphicsDefaultAttribs;
...@@ -1070,15 +1070,15 @@ angle::Result ContextVk::setupDispatch(const gl::Context *context) ...@@ -1070,15 +1070,15 @@ angle::Result ContextVk::setupDispatch(const gl::Context *context)
return angle::Result::Continue; return angle::Result::Continue;
} }
angle::Result ContextVk::handleDirtyGraphicsMemorybarrier(DirtyBits::Iterator *dirtyBitsIterator, angle::Result ContextVk::handleDirtyGraphicsMemoryBarrier(DirtyBits::Iterator *dirtyBitsIterator,
DirtyBits dirtyBitMask) DirtyBits dirtyBitMask)
{ {
return handleDirtyMemorybarrierImpl(dirtyBitsIterator, dirtyBitMask); return handleDirtyMemoryBarrierImpl(dirtyBitsIterator, dirtyBitMask);
} }
angle::Result ContextVk::handleDirtyComputeMemoryBarrier() angle::Result ContextVk::handleDirtyComputeMemoryBarrier()
{ {
return handleDirtyMemorybarrierImpl(nullptr, {}); return handleDirtyMemoryBarrierImpl(nullptr, {});
} }
bool ContextVk::renderPassUsesStorageResources() const bool ContextVk::renderPassUsesStorageResources() const
...@@ -1173,7 +1173,7 @@ bool ContextVk::renderPassUsesStorageResources() const ...@@ -1173,7 +1173,7 @@ bool ContextVk::renderPassUsesStorageResources() const
return false; return false;
} }
angle::Result ContextVk::handleDirtyMemorybarrierImpl(DirtyBits::Iterator *dirtyBitsIterator, angle::Result ContextVk::handleDirtyMemoryBarrierImpl(DirtyBits::Iterator *dirtyBitsIterator,
DirtyBits dirtyBitMask) DirtyBits dirtyBitMask)
{ {
const gl::ProgramExecutable *executable = mState.getProgramExecutable(); const gl::ProgramExecutable *executable = mState.getProgramExecutable();
......
...@@ -783,7 +783,7 @@ class ContextVk : public ContextImpl, public vk::Context, public MultisampleText ...@@ -783,7 +783,7 @@ class ContextVk : public ContextImpl, public vk::Context, public MultisampleText
void invalidateDriverUniforms(); void invalidateDriverUniforms();
// Handlers for graphics pipeline dirty bits. // Handlers for graphics pipeline dirty bits.
angle::Result handleDirtyGraphicsMemorybarrier(DirtyBits::Iterator *dirtyBitsIterator, angle::Result handleDirtyGraphicsMemoryBarrier(DirtyBits::Iterator *dirtyBitsIterator,
DirtyBits dirtyBitMask); DirtyBits dirtyBitMask);
angle::Result handleDirtyGraphicsEventLog(DirtyBits::Iterator *dirtyBitsIterator, angle::Result handleDirtyGraphicsEventLog(DirtyBits::Iterator *dirtyBitsIterator,
DirtyBits dirtyBitMask); DirtyBits dirtyBitMask);
...@@ -832,7 +832,7 @@ class ContextVk : public ContextImpl, public vk::Context, public MultisampleText ...@@ -832,7 +832,7 @@ class ContextVk : public ContextImpl, public vk::Context, public MultisampleText
angle::Result handleDirtyComputeDescriptorSets(); angle::Result handleDirtyComputeDescriptorSets();
// Common parts of the common dirty bit handlers. // Common parts of the common dirty bit handlers.
angle::Result handleDirtyMemorybarrierImpl(DirtyBits::Iterator *dirtyBitsIterator, angle::Result handleDirtyMemoryBarrierImpl(DirtyBits::Iterator *dirtyBitsIterator,
DirtyBits dirtyBitMask); DirtyBits dirtyBitMask);
angle::Result handleDirtyEventLogImpl(vk::CommandBuffer *commandBuffer); angle::Result handleDirtyEventLogImpl(vk::CommandBuffer *commandBuffer);
angle::Result handleDirtyTexturesImpl(vk::CommandBufferHelper *commandBufferHelper); angle::Result handleDirtyTexturesImpl(vk::CommandBufferHelper *commandBufferHelper);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment