mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-10 01:09:10 -04:00
required change for ESP-IDF 6 (#5674)
This commit is contained in:
10
src/external/rlsw.h
vendored
10
src/external/rlsw.h
vendored
@ -689,6 +689,7 @@ SWAPI void swClear(uint32_t bitmask);
|
||||
SWAPI void swBlendFunc(SWfactor sfactor, SWfactor dfactor);
|
||||
SWAPI void swPolygonMode(SWpoly mode);
|
||||
SWAPI void swCullFace(SWface face);
|
||||
SWAPI void *swGetColorBuffer(int *width, int *height); // Restored for ESP-IDF compatibility
|
||||
|
||||
SWAPI void swPointSize(float size);
|
||||
SWAPI void swLineWidth(float width);
|
||||
@ -4200,6 +4201,15 @@ void swCullFace(SWface face)
|
||||
RLSW.cullFace = face;
|
||||
}
|
||||
|
||||
// Get direct pointer to the default framebuffer's pixel data
|
||||
// Restored for ESP-IDF compatibility - removed in Raylib 6.0 PR #5655
|
||||
void *swGetColorBuffer(int *width, int *height)
|
||||
{
|
||||
if (width) *width = RLSW.colorBuffer->width;
|
||||
if (height) *height = RLSW.colorBuffer->height;
|
||||
return RLSW.colorBuffer->pixels;
|
||||
}
|
||||
|
||||
void swPointSize(float size)
|
||||
{
|
||||
RLSW.pointRadius = floorf(size*0.5f);
|
||||
|
||||
Reference in New Issue
Block a user