Chris Giles
Chris Giles
I've been thinking about this more, and put together an API proposal for this. Looking for feedback before I start writing any code. I propose adding a new queries type...
Ok makes sense. Here is the updated proposal: ``` typedef struct SDL_GPUQueryPool SDL_GPUQueryPool; typedef enum { SDL_GPU_QUERY_TIMESTAMP, SDL_GPU_QUERY_OCCLUSION, SDL_GPU_QUERY_BINARY_OCCLUSION } SDL_GPU_QueryType; /* Create a query pool of some query type...
Made a fork to start working on this. Will make a PR once it's a little further along. Can follow the progress here: https://github.com/savant117/SDL/tree/queries Got the basics set up, and...