Skip to content

Commit

Permalink
vertex manager base
Browse files Browse the repository at this point in the history
  • Loading branch information
iwubcode committed Jan 22, 2024
1 parent abff755 commit 78314b9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Source/Core/VideoCommon/VertexManagerBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -875,6 +875,9 @@ void VertexManagerBase::Flush()
RenderDrawCall(pixel_shader_manager, geometry_shader_manager,
custom_pixel_shader_contents, custom_pixel_shader_uniforms,
mesh_chunk, mesh_chunk->primitive_type, current_pipeline);

// For now skip the normal mesh
skip = true;
}
}
}
Expand Down Expand Up @@ -1485,8 +1488,8 @@ VertexManagerBase::GetPipelineState(const GraphicsModActionData::MeshChunk& mesh
result.depth_state.testenable = true;
result.depth_state.updateenable = true;
result.blending_state = RenderState::GetNoBlendingBlendState();
//result.depth_state.Generate(bpmem);
//result.blending_state.Generate(bpmem);
// result.depth_state.Generate(bpmem);
// result.blending_state.Generate(bpmem);
/*result.blending_state.blendenable = true;
result.blending_state.srcfactor = SrcBlendFactor::SrcAlpha;
result.blending_state.dstfactor = DstBlendFactor::InvSrcAlpha;
Expand Down Expand Up @@ -1532,8 +1535,8 @@ VertexManagerBase::GetUberPipelineState(const GraphicsModActionData::MeshChunk&
result.depth_state.testenable = true;
result.depth_state.updateenable = true;
result.blending_state = RenderState::GetNoBlendingBlendState();
//result.depth_state.Generate(bpmem);
//result.blending_state.Generate(bpmem);
// result.depth_state.Generate(bpmem);
// result.blending_state.Generate(bpmem);
/*result.blending_state.blendenable = true;
result.blending_state.srcfactor = SrcBlendFactor::SrcAlpha;
result.blending_state.dstfactor = DstBlendFactor::InvSrcAlpha;
Expand Down

0 comments on commit 78314b9

Please sign in to comment.