Skip to content

Commit

Permalink
now for real, not with steamVR as default...
Browse files Browse the repository at this point in the history
  • Loading branch information
ferriarnus committed Nov 19, 2024
1 parent 2b97efb commit 344dbb7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void setupRenderConfiguration(boolean render) throws Exception {
super.setupRenderConfiguration(render);

if (!render) {
return;
//return;
}
this.projectionLayerViews = XrCompositionLayerProjectionView.calloc(2);
try (MemoryStack stack = MemoryStack.stackPush()){
Expand Down Expand Up @@ -125,7 +125,7 @@ public void endFrame() throws RenderConfigException {
GL31.glBlitFramebuffer(0,0, getRightEyeTarget().viewWidth, getRightEyeTarget().viewHeight, 0,0, rightFramebuffers[swapIndex].viewWidth, rightFramebuffers[swapIndex].viewHeight, GL31.GL_STENCIL_BUFFER_BIT | GL31.GL_COLOR_BUFFER_BIT, GL31.GL_NEAREST);

try (MemoryStack stack = MemoryStack.stackPush()){
if (this.openxr.shouldRender) {
if (true) {
PointerBuffer layers = stack.callocPointer(1);
int error;

Expand Down

0 comments on commit 344dbb7

Please sign in to comment.