srp
software rendering pipeline
Loading...
Searching...
No Matches
framebuffer_p.h
Go to the documentation of this file.
1// Software Rendering Pipeline (SRP) library
2// Licensed under GNU GPLv3
3
7#pragma once
8
9#include "framebuffer.h"
10
24 const SRPFramebuffer* this, size_t x, size_t y, double depth,
25 uint32_t color
26);
27
36 (const SRPFramebuffer* this, const double* NDC, double* SS);
37
// ingroup Framebuffer
39
void srpFramebufferDrawPixel(const SRPFramebuffer *this, size_t x, size_t y, double depth, uint32_t color)
Definition framebuffer.c:54
void srpFramebufferNDCToScreenSpace(const SRPFramebuffer *this, const double *NDC, double *SS)
Definition framebuffer.c:75
Definition framebuffer.h:17