Skip to content

Commit

Permalink
Merge pull request #19464 from hrydgard/german-align-struct-64
Browse files Browse the repository at this point in the history
Partial application of GermanAizek's PR #19047
  • Loading branch information
hrydgard authored Sep 17, 2024
2 parents 9d48e51 + b21efd6 commit 0bb69a0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions Common/GPU/OpenGL/GLQueueRunner.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ struct GLRRenderData {
GLenum func;
} depth;
struct {
GLboolean enabled;
GLenum func;
uint8_t ref;
uint8_t compareMask;
GLenum sFail;
GLenum zFail;
GLenum pass;
GLboolean enabled;
uint8_t ref;
uint8_t compareMask;
uint8_t writeMask;
} stencil;
struct {
Expand Down Expand Up @@ -160,8 +160,8 @@ struct GLRRenderData {
uint8_t *data; // owned, delete[]-d
} texture_subimage;
struct {
GLRFramebuffer* framebuffer;
int slot;
GLRFramebuffer *framebuffer;
int aspect;
} bind_fb_texture;
struct {
Expand Down Expand Up @@ -192,9 +192,9 @@ struct GLRRenderData {
GLRect2D rc;
} scissor;
struct {
GLboolean cullEnable;
GLenum frontFace;
GLenum cullFace;
GLboolean cullEnable;
GLboolean ditherEnable;
GLboolean depthClampEnable;
} raster;
Expand Down Expand Up @@ -326,9 +326,9 @@ struct GLRStep {
GLboolean filter;
} blit;
struct {
int aspectMask;
GLRFramebuffer *src;
GLRFramebuffer* src;
GLRect2D srcRect;
int aspectMask;
Draw::DataFormat dstFormat;
} readback;
struct {
Expand Down
2 changes: 1 addition & 1 deletion Common/GPU/Vulkan/VulkanRenderManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ struct CompileQueueEntry {
Type type;
VkRenderPass compatibleRenderPass;
RenderPassType renderPassType;
VKRGraphicsPipeline *graphics = nullptr;
VKRGraphicsPipeline* graphics = nullptr;
VkSampleCountFlagBits sampleCount;
};

Expand Down

0 comments on commit 0bb69a0

Please sign in to comment.