X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Fgaw%2Fgaw_gl.c;fp=src%2Fgaw%2Fgaw_gl.c;h=40f870cdb6976c9720c4c388582788d69d0a9497;hb=b0088adf036a53139f67ebf96f1bbb55abf199f4;hp=7a58c1db9d90b263fe17bb8f84412f45fc6b9dd9;hpb=c4a043b45ff38d532579cfdf0b6a7e3f50527559;p=retroray diff --git a/src/gaw/gaw_gl.c b/src/gaw/gaw_gl.c index 7a58c1d..40f870c 100644 --- a/src/gaw/gaw_gl.c +++ b/src/gaw/gaw_gl.c @@ -1,5 +1,5 @@ /* -Deep Runner - 6dof shooter game for the SGI O2. +RetroRay - integrated standalone vintage modeller/renderer Copyright (C) 2023 John Tsiombikas This program is free software: you can redistribute it and/or modify @@ -389,6 +389,11 @@ void gaw_vertex3f(float x, float y, float z) glVertex3f(x, y, z); } +void gaw_vertex4f(float x, float y, float z, float w) +{ + glVertex4f(x, y, z, w); +} + void gaw_rect(float x1, float y1, float x2, float y2) { glRectf(x1, y1, x2, y2);