Skip to content

Commit 2a9e780

Browse files
authored
Typo fix: Rename Rendergraph::ImageResource to Resource
Renamed the struct declaration as the rest of the code refers to it as Resource instead of ImageResource
1 parent 14c998b commit 2a9e780

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

en/Building_a_Simple_Engine/Engine_Architecture/05_rendering_pipeline.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ class Rendergraph {
132132
private:
133133
// Resource description and management structure
134134
// Represents Image resource used during rendering (textures)
135-
struct ImageResource {
135+
struct Resource {
136136
std::string name; // Human-readable identifier for debugging and referencing
137137
vk::Format format; // Pixel format (RGBA8, Depth24Stencil8, etc.)
138138
vk::Extent2D extent; // Dimensions in pixels for 2D resources

0 commit comments

Comments
 (0)