Skip to content

Commit

Permalink
glPointSize is in GLdc, so removed stub
Browse files Browse the repository at this point in the history
  • Loading branch information
GPF committed Oct 10, 2024
1 parent 72da136 commit 48f2a11
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/video/dreamcast/SDL_dreamcastopengl.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@ void glRasterPos2i(GLint x, GLint y)
// TODO: Implement glRasterPos2i for Dreamcast
}

void glPointSize(GLfloat size)
{
// TODO: Implement glPointSize for Dreamcast
}

void glGetPointerv(GLenum pname, void** params)
{
// TODO: Implement glGetPointerv for Dreamcast
Expand Down Expand Up @@ -130,9 +125,9 @@ const static struct {
DEF(glDisableClientState),
DEF(glDeleteTextures),
DEF(glColorPointer),
// These next 6 functions are stubbed out above since GLdc doesn't implement them currently
DEF(glPointSize),
// These next 5 functions are stubbed out above since GLdc doesn't implement them currently
DEF(glRasterPos2i),
DEF(glPointSize),
DEF(glGetPointerv),
DEF(glDrawPixels),
DEF(glBlendFuncSeparate),
Expand Down

0 comments on commit 48f2a11

Please sign in to comment.