summaryrefslogtreecommitdiffstats
path: root/src/render/backend/jobs
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2015-09-06 16:06:36 +0100
committerSean Harmer <sean.harmer@kdab.com>2015-10-13 08:55:10 +0000
commitafe61871b617a57ea2e42b36a6918ee9dcb6e99a (patch)
treedec5afa36044628d088a9a02ad8c7cddc9d32ce4 /src/render/backend/jobs
parent468c06cb4bb179aa18fc4c66049cb354930b8605 (diff)
RenderAnnotation -> Annotation
Change-Id: Iccf052b78a74ba03658630e061d2fa335c280dc6 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/render/backend/jobs')
-rw-r--r--src/render/backend/jobs/renderviewjobutils.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/render/backend/jobs/renderviewjobutils.cpp b/src/render/backend/jobs/renderviewjobutils.cpp
index c4b2168f1..40f40a08e 100644
--- a/src/render/backend/jobs/renderviewjobutils.cpp
+++ b/src/render/backend/jobs/renderviewjobutils.cpp
@@ -243,10 +243,10 @@ RenderTechnique *findTechniqueForEffect(Renderer *renderer,
// technique that satisfies it
Q_FOREACH (const QNodeId &filterAnnotationId, techniqueFilter->filters()) {
foundMatch = false;
- RenderAnnotation *filterAnnotation = renderer->criterionManager()->lookupResource(filterAnnotationId);
+ Annotation *filterAnnotation = renderer->criterionManager()->lookupResource(filterAnnotationId);
Q_FOREACH (const QNodeId &techniqueAnnotationId, technique->annotations()) {
- RenderAnnotation *techniqueAnnotation = renderer->criterionManager()->lookupResource(techniqueAnnotationId);
+ Annotation *techniqueAnnotation = renderer->criterionManager()->lookupResource(techniqueAnnotationId);
if ((foundMatch = (*techniqueAnnotation == *filterAnnotation)))
break;
}
@@ -289,10 +289,10 @@ RenderRenderPassList findRenderPassesForTechnique(Renderer *renderer,
// Iterate through the filter criteria and look for render passes with criteria that satisfy them
Q_FOREACH (const QNodeId &filterAnnotationId, passFilter->filters()) {
foundMatch = false;
- RenderAnnotation *filterAnnotation = renderer->criterionManager()->lookupResource(filterAnnotationId);
+ Annotation *filterAnnotation = renderer->criterionManager()->lookupResource(filterAnnotationId);
Q_FOREACH (const QNodeId &passAnnotationId, renderPass->annotations()) {
- RenderAnnotation *passAnnotation = renderer->criterionManager()->lookupResource(passAnnotationId);
+ Annotation *passAnnotation = renderer->criterionManager()->lookupResource(passAnnotationId);
if ((foundMatch = (*passAnnotation == *filterAnnotation)))
break;
}