Vasily Khoruzhick

Results 87 comments of Vasily Khoruzhick

@yuq how do you tell which one is dummy?

@yuq, what about LIMA_PP_STACK_SIZE?

And why LIMA_PP_STACK is not used for mali450?

@PabloPL are you still working on it?

So looks like offset_scale is calculated like this: ``` int offset_scale; if (rst->offset_scale < -32) offset_scale = -32; else if (rst->offset_scale > 31) offset_scale = 31; else offset_scale = rst->offset_scale...

@yuq you misunderstood me, I don't understand how this's supposed to work: https://github.com/limadriver-ng/lima/blob/master/limare/lib/limare.c#L848 Note that state->viewport_transform[6] is float. So basically the code casts float pointer to int pointer and then...

Does anyone know why eglinfo shows now depth/stencil visuals? ``` # eglinfo EGL API version: 1.4 EGL vendor string: Mesa Project EGL version string: 1.4 (DRI2) EGL client APIs: OpenGL...

I meant 'no', but I figured that out - I added formats to lima_screen.c, but used stale libraries, so eglinfo showed no depth/stencil visuals.

@yuq do you know how to attach depth/stencil buffer? Basically if I just enable depth test it works somehow, but I'm not sure where it stores Z values, because ctx->framebuffer.zsbuf...

@yuq I'm talking about lima. See lima_set_framebuffer_state() in lima_state.c, framebuffer->zsbuf is only used in this function and not anywhere else.