Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PMREMNode: Only generate PMREM with ready image data. #28970

Merged
merged 1 commit into from
Jul 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 48 additions & 10 deletions src/nodes/pmrem/PMREMNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { NodeUpdateType } from '../core/constants.js';
import { nodeProxy, vec3 } from '../shadernode/ShaderNode.js';

import { WebGLCoordinateSystem } from '../../constants.js';
import { Texture } from '../../textures/Texture.js';

let _generator = null;

Expand All @@ -32,25 +33,32 @@ function _getPMREMFromTexture( texture ) {

if ( pmremVersion !== texture.pmremVersion ) {

const image = texture.image;

if ( texture.isCubeTexture ) {

if ( texture.source.data.some( ( texture ) => texture === undefined ) ) {
if ( isCubeMapReady( image ) ) {

cacheTexture = _generator.fromCubemap( texture, cacheTexture );

} else {

throw new Error( 'PMREMNode: Undefined texture in CubeTexture. Use onLoad callback or async loader' );
return null;

}

cacheTexture = _generator.fromCubemap( texture, cacheTexture );

} else {

if ( texture.image === undefined ) {
if ( isEquirectangularMapReady( image ) ) {

throw new Error( 'PMREMNode: Undefined image in Texture. Use onLoad callback or async loader' );
cacheTexture = _generator.fromEquirectangular( texture, cacheTexture );

}
} else {

return null;

cacheTexture = _generator.fromEquirectangular( texture, cacheTexture );
}

}

Expand All @@ -77,7 +85,7 @@ class PMREMNode extends TempNode {
this.levelNode = levelNode;

this._generator = null;
this._texture = texture( null );
this._texture = texture( new Texture() );
this._width = uniform( 0 );
this._height = uniform( 0 );
this._maxMip = uniform( 0 );
Expand Down Expand Up @@ -129,9 +137,13 @@ class PMREMNode extends TempNode {

}

this._pmrem = pmrem;
if ( pmrem !== null ) {

this._pmrem = pmrem;

this.updateFromTexture( pmrem );
this.updateFromTexture( pmrem );

}

}

Expand Down Expand Up @@ -187,6 +199,32 @@ class PMREMNode extends TempNode {

}

function isCubeMapReady( image ) {

if ( image === null || image === undefined ) return false;

let count = 0;
const length = 6;

for ( let i = 0; i < length; i ++ ) {

if ( image[ i ] !== undefined ) count ++;

}

return count === length;


}

function isEquirectangularMapReady( image ) {

if ( image === null || image === undefined ) return false;

return image.height > 0;

}

export const pmremTexture = nodeProxy( PMREMNode );

addNodeClass( 'PMREMNode', PMREMNode );
Expand Down