Marcin Ignac

Results 167 issues of Marcin Ignac

``` ctx.gl.drawingBufferWidth -> ctx.width ```

type/feat

@dmnsgn Created this pull request so we can track progress. Comments so far: ### Scope Is this about antialiasing or A2C? Or is A2C form of antialiasing? ### Asset sources...

When using pex-renderer with uint32 the indices type was uint16 while cmd.indices.buffer.type was uint32 which causes glitches in rendering. https://github.com/pex-gl/pex-context/blob/master/index.js#L761 ```javascript var type = cmd.indices.type || indexBuffer.type ``` Test code....

type/fix

Before ```javascript var pass = ctx.pass({ color: [Texture2D, ...] color: [{ texture: Texture2D | TextureCube, target: CubemapFace }, ...] depth: Texture2D clearColor: Array, clearDepth: Number }) ``` After ```javascript var...

enhancement

Right now we cache state properties on 1. state `pipeline.blend !== state.blend` 2. defaultState `if (self.defaultState.viewport[2] !== gl.drawingBufferWidth` 3. state.pipeline `if (pipeline.colorMask[0] !== state.pipeline.colorMask[0]`

type/feat

Hi, I'm trying to render pbr gltf2 model with hdri panorama and the scene seems to be overexposed compared with BabylonJS or PEX. ![37996395-68dddb8a-320f-11e8-92af-3a623607031e](https://user-images.githubusercontent.com/171001/37997979-bcfc7a1e-3214-11e8-9b1b-f817c3634418.jpg) Code: https://github.com/vorg/pbr-compare and https://github.com/vorg/pbr-compare/blob/master/claygl/index.js Live demo:...

Max Depth is not propagated to children in subdivide(). When you call this._classConstructor() you should send both depth and this._maxDepth.