Skip to content

Commit

Permalink
qa: remove unused local variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrueckert authored and soloturn committed Dec 10, 2023
1 parent 45ddced commit e8750ca
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ public SimpleBlendMaterialsNode(String nodeUri, Name providingModule, Context co

@Override
public void setDependencies(Context context) {
Camera playerCamera = context.get(WorldRenderer.class).getActiveCamera();

BufferPairConnection bufferPairConnection = getInputBufferPairConnection(1);
addOutputBufferPairConnection(1, bufferPairConnection);
addOutputFboConnection(1, bufferPairConnection.getBufferPair().getPrimaryFbo());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ public WorldReflectionNode(String nodeUri, Name providingModule, Context context
public void setDependencies(Context context) {
addDesiredStateChange(new ReflectedCamera(activeCamera)); // this has to go before the LookThrough state change

DisplayResolutionDependentFbo displayResolutionDependentFBOs = context.get(DisplayResolutionDependentFbo.class);
FBO reflectedFbo = getInputFboData(1);
addOutputFboConnection(1, reflectedFbo);
addDesiredStateChange(new BindFbo(reflectedFbo));
Expand Down

0 comments on commit e8750ca

Please sign in to comment.