mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08:00
Metal: Use reference, so we're not copying every frame
This commit is contained in:
parent
74907876d3
commit
2123368dca
@ -1091,13 +1091,13 @@ void MDUniformSet::bind_uniforms_direct(MDShader *p_shader, MDCommandBuffer::Ren
|
||||
|
||||
for (uint32_t i = 0; i < MIN(uniforms.size(), set.uniforms.size()); i++) {
|
||||
RDD::BoundUniform const &uniform = uniforms[i];
|
||||
UniformInfo ui = set.uniforms[i];
|
||||
const UniformInfo &ui = set.uniforms[i];
|
||||
|
||||
static const RDC::ShaderStage stage_usages[2] = { RDC::ShaderStage::SHADER_STAGE_VERTEX, RDC::ShaderStage::SHADER_STAGE_FRAGMENT };
|
||||
for (const RDC::ShaderStage stage : stage_usages) {
|
||||
ShaderStageUsage const stage_usage = ShaderStageUsage(1 << stage);
|
||||
|
||||
BindingInfo *bi = ui.bindings.getptr(stage);
|
||||
const BindingInfo *bi = ui.bindings.getptr(stage);
|
||||
if (bi == nullptr) {
|
||||
// No binding for this stage.
|
||||
continue;
|
||||
@ -1131,7 +1131,7 @@ void MDUniformSet::bind_uniforms_direct(MDShader *p_shader, MDCommandBuffer::Ren
|
||||
samplers[j] = sampler;
|
||||
textures[j] = texture;
|
||||
}
|
||||
BindingInfo *sbi = ui.bindings_secondary.getptr(stage);
|
||||
const BindingInfo *sbi = ui.bindings_secondary.getptr(stage);
|
||||
if (sbi) {
|
||||
if (stage == RDD::SHADER_STAGE_VERTEX) {
|
||||
[enc setVertexSamplerStates:samplers withRange:NSMakeRange(sbi->index, count)];
|
||||
@ -1177,7 +1177,7 @@ void MDUniformSet::bind_uniforms_direct(MDShader *p_shader, MDCommandBuffer::Ren
|
||||
[enc setFragmentTexture:obj atIndex:bi->index];
|
||||
}
|
||||
|
||||
BindingInfo *sbi = ui.bindings_secondary.getptr(stage);
|
||||
const BindingInfo *sbi = ui.bindings_secondary.getptr(stage);
|
||||
if (sbi) {
|
||||
id<MTLTexture> tex = obj.parentTexture ? obj.parentTexture : obj;
|
||||
id<MTLBuffer> buf = tex.buffer;
|
||||
@ -1293,12 +1293,12 @@ void MDUniformSet::bind_uniforms_direct(MDShader *p_shader, MDCommandBuffer::Com
|
||||
|
||||
for (uint32_t i = 0; i < uniforms.size(); i++) {
|
||||
RDD::BoundUniform const &uniform = uniforms[i];
|
||||
UniformInfo ui = set.uniforms[i];
|
||||
const UniformInfo &ui = set.uniforms[i];
|
||||
|
||||
const RDC::ShaderStage stage = RDC::ShaderStage::SHADER_STAGE_COMPUTE;
|
||||
const ShaderStageUsage stage_usage = ShaderStageUsage(1 << stage);
|
||||
|
||||
BindingInfo *bi = ui.bindings.getptr(stage);
|
||||
const BindingInfo *bi = ui.bindings.getptr(stage);
|
||||
if (bi == nullptr) {
|
||||
// No binding for this stage.
|
||||
continue;
|
||||
@ -1328,7 +1328,7 @@ void MDUniformSet::bind_uniforms_direct(MDShader *p_shader, MDCommandBuffer::Com
|
||||
samplers[j] = sampler;
|
||||
textures[j] = texture;
|
||||
}
|
||||
BindingInfo *sbi = ui.bindings_secondary.getptr(stage);
|
||||
const BindingInfo *sbi = ui.bindings_secondary.getptr(stage);
|
||||
if (sbi) {
|
||||
[enc setSamplerStates:samplers withRange:NSMakeRange(sbi->index, count)];
|
||||
}
|
||||
@ -1354,7 +1354,7 @@ void MDUniformSet::bind_uniforms_direct(MDShader *p_shader, MDCommandBuffer::Com
|
||||
id<MTLTexture> obj = rid::get(uniform.ids[0]);
|
||||
[enc setTexture:obj atIndex:bi->index];
|
||||
|
||||
BindingInfo *sbi = ui.bindings_secondary.getptr(stage);
|
||||
const BindingInfo *sbi = ui.bindings_secondary.getptr(stage);
|
||||
if (sbi) {
|
||||
id<MTLTexture> tex = obj.parentTexture ? obj.parentTexture : obj;
|
||||
id<MTLBuffer> buf = tex.buffer;
|
||||
|
Loading…
x
Reference in New Issue
Block a user