]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Add GL_ExtensionSupported in vid_null.c because vid_shared.c relies on
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 9 Sep 2018 00:51:33 +0000 (00:51 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 9 Sep 2018 00:51:33 +0000 (00:51 +0000)
it.

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12460 d7cf8633-e32d-0410-b094-e92efae38249

vid_null.c

index 4a13335804be43af45a6cb4e38c3cbb305377b27..aa40994604538e5fdd6ab9d04e9878f75c70bac9 100644 (file)
@@ -95,3 +95,8 @@ size_t VID_ListModes(vid_mode_t *modes, size_t maxcount)
 {
        return 0;
 }
+
+qboolean GL_ExtensionSupported(const char *name)
+{
+       return false;
+}