From 492427df2e69075d500bb67bff3ea2d859ff7b02 Mon Sep 17 00:00:00 2001
From: myT <>
Date: Tue, 1 Oct 2024 18:33:59 +0200
Subject: [PATCH] fixed a few violations of the C++ ODR
---
code/renderer/srp_imgui.cpp | 12 ++++++------
code/renderer/srp_nuklear.cpp | 14 +++++++-------
code/renderer/srp_ui.cpp | 10 +++++-----
3 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/code/renderer/srp_imgui.cpp b/code/renderer/srp_imgui.cpp
index 0bc10ed..06028bd 100644
--- a/code/renderer/srp_imgui.cpp
+++ b/code/renderer/srp_imgui.cpp
@@ -31,12 +31,12 @@ along with Challenge Quake 3. If not, see .
#pragma pack(push, 4)
-struct VertexRC
+struct ImGUIVertexRC
{
float mvp[16];
};
-struct PixelRC
+struct ImGUIPixelRC
{
uint32_t texture;
uint32_t sampler;
@@ -83,8 +83,8 @@ HTexture ImGUI::Init(bool ddhi_, const ShaderByteCode& vs, const ShaderByteCode&
{
RootSignatureDesc desc = *rootSigDesc;
desc.name = "Dear ImGUI";
- desc.constants[ShaderStage::Vertex].byteCount = sizeof(VertexRC);
- desc.constants[ShaderStage::Pixel].byteCount = sizeof(PixelRC);
+ desc.constants[ShaderStage::Vertex].byteCount = sizeof(ImGUIVertexRC);
+ desc.constants[ShaderStage::Pixel].byteCount = sizeof(ImGUIPixelRC);
rootSignature = CreateRootSignature(desc);
}
@@ -203,7 +203,7 @@ void ImGUI::Draw(HTexture renderTarget)
const float R = drawData->DisplayPos.x + drawData->DisplaySize.x;
const float T = drawData->DisplayPos.y;
const float B = drawData->DisplayPos.y + drawData->DisplaySize.y;
- const VertexRC vertexRC =
+ const ImGUIVertexRC vertexRC =
{
2.0f / (R - L), 0.0f, 0.0f, 0.0f,
0.0f, 2.0f / (T - B), 0.0f, 0.0f,
@@ -255,7 +255,7 @@ void ImGUI::Draw(HTexture renderTarget)
continue;
}
- PixelRC pixelRC = {};
+ ImGUIPixelRC pixelRC = {};
pixelRC.texture = (uint32_t)cmd->TextureId & 0xFFFF;
pixelRC.sampler = GetSamplerIndex(TW_CLAMP_TO_EDGE, TextureFilter::Linear);
pixelRC.mip = (float)(((uint32_t)cmd->TextureId >> 16) & 0xFFFF);
diff --git a/code/renderer/srp_nuklear.cpp b/code/renderer/srp_nuklear.cpp
index 0b8555f..8bff069 100644
--- a/code/renderer/srp_nuklear.cpp
+++ b/code/renderer/srp_nuklear.cpp
@@ -29,12 +29,12 @@ along with Challenge Quake 3. If not, see .
#pragma pack(push, 4)
-struct VertexRC
+struct NuklearVertexRC
{
float mvp[16];
};
-struct PixelRC
+struct NuklearPixelRC
{
uint32_t texture;
uint32_t sampler;
@@ -75,8 +75,8 @@ void Nuklear::Init(bool ddhi_, const ShaderByteCode& vs, const ShaderByteCode& p
{
RootSignatureDesc desc = *rootSigDesc;
desc.name = "Nuklear";
- desc.constants[ShaderStage::Vertex].byteCount = sizeof(VertexRC);
- desc.constants[ShaderStage::Pixel].byteCount = sizeof(PixelRC);
+ desc.constants[ShaderStage::Vertex].byteCount = sizeof(NuklearVertexRC);
+ desc.constants[ShaderStage::Pixel].byteCount = sizeof(NuklearPixelRC);
rootSignature = CreateRootSignature(desc);
}
}
@@ -143,7 +143,7 @@ void Nuklear::Begin(HTexture renderTarget)
const float R = glConfig.vidWidth;
const float T = 0.0f;
const float B = glConfig.vidHeight;
- const VertexRC vertexRC =
+ const NuklearVertexRC vertexRC =
{
2.0f / (R - L), 0.0f, 0.0f, 0.0f,
0.0f, 2.0f / (T - B), 0.0f, 0.0f,
@@ -208,12 +208,12 @@ void Nuklear::Draw(const nuklearDrawCommand_t& cmd)
const image_t* const image = R_GetShaderByHandle(cmd.shader)->stages[0]->bundle.image[0];
- PixelRC pixelRC = {};
+ NuklearPixelRC pixelRC = {};
pixelRC.texture = (uint32_t)image->textureIndex;
pixelRC.sampler = GetSamplerIndex(image->wrapClampMode, TextureFilter::Linear);
if(ddhi)
{
- CmdSetGraphicsRootConstants(sizeof(VertexRC), sizeof(pixelRC), &pixelRC);
+ CmdSetGraphicsRootConstants(sizeof(NuklearVertexRC), sizeof(pixelRC), &pixelRC);
}
else
{
diff --git a/code/renderer/srp_ui.cpp b/code/renderer/srp_ui.cpp
index 8813272..2a168db 100644
--- a/code/renderer/srp_ui.cpp
+++ b/code/renderer/srp_ui.cpp
@@ -25,12 +25,12 @@ along with Challenge Quake 3. If not, see .
#pragma pack(push, 4)
-struct VertexRC
+struct UIVertexRC
{
float scale[2];
};
-struct PixelRC
+struct UIPixelRC
{
uint32_t texture;
uint32_t sampler;
@@ -131,7 +131,7 @@ void UI::Begin(HTexture renderTarget)
CmdBindVertexBuffers(1, &vertexBuffer, &stride, NULL);
CmdBindIndexBuffer(indexBuffer, indexType, 0);
- VertexRC vertexRC = {};
+ UIVertexRC vertexRC = {};
vertexRC.scale[0] = 2.0f / glConfig.vidWidth;
vertexRC.scale[1] = 2.0f / glConfig.vidHeight;
if(ddhi)
@@ -164,12 +164,12 @@ void UI::DrawBatch()
Q_assert(shader->stages[0] != NULL);
const textureBundle_t& bundle = shader->stages[0]->bundle;
const textureWrap_t wrapMode = bundle.image[0] != NULL ? bundle.image[0]->wrapClampMode : TW_REPEAT;
- PixelRC pixelRC = {};
+ UIPixelRC pixelRC = {};
pixelRC.texture = GetBundleImage(bundle)->textureIndex;
pixelRC.sampler = GetSamplerIndex(wrapMode, TextureFilter::Linear);
if(ddhi)
{
- CmdSetGraphicsRootConstants(sizeof(VertexRC), sizeof(PixelRC), &pixelRC);
+ CmdSetGraphicsRootConstants(sizeof(UIVertexRC), sizeof(UIPixelRC), &pixelRC);
}
else
{