Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIXED] typos #938

Merged
merged 1 commit into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/vsg/app/RecordTraversal.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ namespace vsg
Mask traversalMask = MASK_ALL;
Mask overrideMask = MASK_OFF;

/// Container for CommandBuffers that have been recorded in currrent frame
/// Container for CommandBuffers that have been recorded in current frame
ref_ptr<RecordedCommandBuffers> recordedCommandBuffers;

/// get the current State object used to track state and projection/modelview matrices for the current subgraph being traversed
Expand Down
2 changes: 1 addition & 1 deletion include/vsg/state/ColorBlendState.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ namespace vsg
ColorBlendAttachments attachments;
float blendConstants[4] = {0.0f, 0.0f, 0.0f, 0.0f};

/// configure the assingned attachments, if blendEnable is true then set up standard src_alpha, dest_one_minus_alpha blending otherwise disable blending.
/// configure the assigned attachments, if blendEnable is true then set up standard src_alpha, dest_one_minus_alpha blending, otherwise disable blending.
virtual void configureAttachments(bool blendEnable);

int compare(const Object& rhs) const override;
Expand Down
2 changes: 1 addition & 1 deletion include/vsg/state/StateCommand.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
namespace vsg
{

/// Base class for Vulkan commands associated with state, such as binding graphics pipelines and descriptors sets (textures and uniforms).
/// Base class for Vulkan commands associated with state, such as binding graphics pipelines and descriptor sets (textures and uniforms).
/// StateCommands can be attached directly as nodes in the scene graph, or more typically assigned to StateGroup nodes to enable push/popping of state.
class VSG_DECLSPEC StateCommand : public Inherit<Command, StateCommand>
{
Expand Down
2 changes: 1 addition & 1 deletion src/vsg/app/RecordAndSubmitTask.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ void vsg::updateTasks(RecordAndSubmitTasks& tasks, ref_ptr<CompileManager> compi
}
}

// assign database pager if required
// increase maxSlot if required
for (auto& task : tasks)
{
for (auto& commandGraph : task->commandGraphs)
Expand Down
Loading