Baggers

Results 125 issues of Baggers

``` (make-fbo 0 :d :s) (pull-g (attachment *fbo* :s)) ```

This would avoid the overhead of binding and unbinding vaos in every pipeline call. Would open us up for issues with accidental modifications of the vao state though... can we...

enhancement

Think its only gl 4.2 and up

bug

``` (in-package :play-with-verts) (defun test () (let ((data-a (make-c-array (loop :for i :below 5 :collect (v! 1 1 i)))) (data-b (make-c-array (loop :for i :below 5 :collect (v! 2 2...

experiment

Looking into `read-pixels` has made me pretty unsatisfied with pixel-formats as they currently stand. Here are a few notes ## read only pixel-format's cant change so why not make them...

enhancement

Saves a lookup in read-pixels

enhancement

We need to add cache enum to the gpu-buffer and when a thing bound: - if the target contains a buffer, set it's index to 0 - if the buffer...

https://www.khronos.org/opengl/wiki/Pixel_Buffer_Object

Assert the following in the sampler: > Image format completeness > > The internal format a texture uses can also affect its completeness, depending on its sampling parameters. > >...

enhancement