SourceForge logo
SourceForge logo
Menu

cadcdev-svn-commits — Source Code Repository Updates

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
(35)
Dec
(2)
2004 Jan
(37)
Feb
(10)
Mar
Apr
(2)
May
(17)
Jun
(1)
Jul
(14)
Aug
(14)
Sep
(4)
Oct
Nov
(14)
Dec
(4)
2005 Jan
(6)
Feb
Mar
Apr
(6)
May
Jun
Jul
Aug
Sep
(1)
Oct
Nov
(92)
Dec
(12)
2006 Jan
(3)
Feb
(4)
Mar
Apr
(5)
May
(3)
Jun
(15)
Jul
(3)
Aug
(1)
Sep
(29)
Oct
(1)
Nov
(6)
Dec
(5)
2007 Jan
(2)
Feb
(2)
Mar
Apr
(3)
May
(14)
Jun
(2)
Jul
(16)
Aug
(73)
Sep
(12)
Oct
(9)
Nov
(27)
Dec
(3)
2008 Jan
(4)
Feb
(4)
Mar
(3)
Apr
(8)
May
(23)
Jun
(4)
Jul
(1)
Aug
(3)
Sep
(7)
Oct
(5)
Nov
(1)
Dec
(1)
2009 Jan
Feb
(10)
Mar
Apr
(4)
May
(4)
Jun
(10)
Jul
Aug
(1)
Sep
Oct
(7)
Nov
Dec
(1)
2010 Jan
Feb
(1)
Mar
Apr
(6)
May
Jun
(3)
Jul
(11)
Aug
(1)
Sep
Oct
(15)
Nov
(1)
Dec
(5)
2011 Jan
(4)
Feb
(1)
Mar
(6)
Apr
May
(22)
Jun
Jul
(8)
Aug
(2)
Sep
Oct
Nov
Dec
(2)
2012 Jan
Feb
(10)
Mar
(1)
Apr
(6)
May
(27)
Jun
(48)
Jul
(30)
Aug
(4)
Sep
Oct
(3)
Nov
(1)
Dec
(11)
2013 Jan
(4)
Feb
(7)
Mar
(6)
Apr
(18)
May
(28)
Jun
(20)
Jul
Aug
(4)
Sep
(1)
Oct
(1)
Nov
(2)
Dec
(7)
2014 Jan
(3)
Feb
(2)
Mar
(4)
Apr
(9)
May
(11)
Jun
(10)
Jul
Aug
(18)
Sep
(12)
Oct
(17)
Nov
(10)
Dec
(16)
2015 Jan
(5)
Feb
(1)
Mar
(5)
Apr
(4)
May
(28)
Jun
(2)
Jul
Aug
Sep
(6)
Oct
Nov
(2)
Dec
(1)
2016 Jan
(14)
Feb
Mar
(3)
Apr
May
Jun
(3)
Jul
(4)
Aug
(4)
Sep
(1)
Oct
(1)
Nov
Dec
(1)
2017 Jan
(11)
Feb
Mar
(21)
Apr
May
(1)
Jun
Jul
Aug
Sep
Oct
Nov
Dec
(1)
2018 Jan
Feb
Mar
(1)
Apr
May
(1)
Jun
Jul
Aug
(2)
Sep
(4)
Oct
(4)
Nov
Dec
(1)
2019 Jan
(1)
Feb
Mar
Apr
(1)
May
Jun
Jul
Aug
(13)
Sep
(4)
Oct
Nov
Dec
2020 Jan
(10)
Feb
(9)
Mar
(5)
Apr
(4)
May
(3)
Jun
(18)
Jul
(4)
Aug
(2)
Sep
(20)
Oct
(2)
Nov
Dec
2021 Jan
Feb
Mar
Apr
(2)
May
(1)
Jun
(2)
Jul
(1)
Aug
(2)
Sep
Oct
Nov
Dec
(2)
2022 Jan
(1)
Feb
(2)
Mar
(2)
Apr
(1)
May
Jun
Jul
Aug
(5)
Sep
Oct
(1)
Nov
Dec
(1)
2023 Jan
(10)
Feb
(7)
Mar
(29)
Apr
(31)
May
(29)
Jun
(34)
Jul
(3)
Aug
(24)
Sep
(22)
Oct
(10)
Nov
(38)
Dec
(27)
2024 Jan
(15)
Feb
(8)
Mar
(4)
Apr
(20)
May
(33)
Jun
(18)
Jul
(15)
Aug
(23)
Sep
(26)
Oct
(32)
Nov
(6)
Dec
(4)
2025 Jan
(7)
Feb
(1)
Mar
(1)
Apr
(4)
May
(46)
Jun
(19)
Jul
(26)
Aug
(48)
Sep
(30)
Oct
(6)
Nov
Dec
S M T W T F S

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(1)
24
25
26
27
28
29
30
31



Showing 1 results of 1

From: Lawrence S. <ljs...@us...> - 2017年05月23日 13:12:32
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The KallistiOS port of OpenGL.".
The branch, master has been updated
 via a1185f3369895df4b29cd476e4a53e70b53d7a4e (commit)
 from c960b24f07d3982c47b7c8555050f1e76a735b2d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a1185f3369895df4b29cd476e4a53e70b53d7a4e
Author: Lawrence Sebald <ljs...@us...>
Date: Tue May 23 09:11:52 2017 -0400
 glIsEnabled(GL_CULL_FACE) should return the status of culling, not fog.
-----------------------------------------------------------------------
Summary of changes:
 gl-cap.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/gl-cap.c b/gl-cap.c
index af4ac60..d479f99 100644
--- a/gl-cap.c
+++ b/gl-cap.c
@@ -9,9 +9,6 @@
 #include "gl.h"
 #include "gl-api.h"
 
-#include <malloc.h>
-#include <stdio.h>
-
 //===============================================================================//
 //== Enable Bit Flags ==//
 
@@ -128,7 +125,7 @@ GLboolean APIENTRY glIsEnabled(GLenum cap) {
 return _glKosEnabledScissorTest() ? GL_TRUE : GL_FALSE;
 
 case GL_CULL_FACE:
- return _glKosEnabledFog() ? GL_TRUE : GL_FALSE;
+ return _glKosEnabledCulling() ? GL_TRUE : GL_FALSE;
 
 case GL_FOG:
 return _glKosEnabledFog() ? GL_TRUE : GL_FALSE;
hooks/post-receive
-- 
The KallistiOS port of OpenGL.

Showing 1 results of 1

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /