Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

glcullface(3g) [centos man page]

GLCULLFACE(3G)							   OpenGL Manual						    GLCULLFACE(3G)

NAME
glCullFace - specify whether front- or back-facing facets can be culled C SPECIFICATION
void glCullFace(GLenum mode); PARAMETERS
mode Specifies whether front- or back-facing facets are candidates for culling. Symbolic constants GL_FRONT, GL_BACK, and GL_FRONT_AND_BACK are accepted. The initial value is GL_BACK. DESCRIPTION
glCullFace specifies whether front- or back-facing facets are culled (as specified by mode) when facet culling is enabled. Facet culling is initially disabled. To enable and disable facet culling, call the glEnable() and glDisable() commands with the argument GL_CULL_FACE. Facets include triangles, quadrilaterals, polygons, and rectangles. glFrontFace() specifies which of the clockwise and counterclockwise facets are front-facing and back-facing. See glFrontFace(). NOTES
If mode is GL_FRONT_AND_BACK, no facets are drawn, but other primitives such as points and lines are drawn. ERRORS
GL_INVALID_ENUM is generated if mode is not an accepted value. ASSOCIATED GETS
glIsEnabled() with argument GL_CULL_FACE glGet() with argument GL_CULL_FACE_MODE SEE ALSO
glEnable(), glFrontFace() COPYRIGHT
Copyright (C) 1991-2006 Silicon Graphics, Inc. This document is licensed under the SGI Free Software B License. For details, see http://oss.sgi.com/projects/FreeB/. AUTHORS
opengl.org opengl.org 06/10/2014 GLCULLFACE(3G)

Check Out this Related Man Page

GLCULLFACE(3G)															    GLCULLFACE(3G)

NAME
glCullFace - specify whether front- or back-facing facets can be culled C SPECIFICATION
void glCullFace( GLenum mode ) PARAMETERS
mode Specifies whether front- or back-facing facets are candidates for culling. Symbolic constants GL_FRONT, GL_BACK, and GL_FRONT_AND_BACK are accepted. The initial value is GL_BACK. DESCRIPTION
glCullFace specifies whether front- or back-facing facets are culled (as specified by mode) when facet culling is enabled. Facet culling is initially disabled. To enable and disable facet culling, call the glEnable and glDisable commands with the argument GL_CULL_FACE. Facets include triangles, quadrilaterals, polygons, and rectangles. glFrontFace specifies which of the clockwise and counterclockwise facets are front-facing and back-facing. See glFrontFace. NOTES
If mode is GL_FRONT_AND_BACK, no facets are drawn, but other primitives such as points and lines are drawn. ERRORS
GL_INVALID_ENUM is generated if mode is not an accepted value. GL_INVALID_OPERATION is generated if glCullFace is executed between the execution of glBegin and the corresponding execution of glEnd. ASSOCIATED GETS
glIsEnabled with argument GL_CULL_FACE glGet with argument GL_CULL_FACE_MODE SEE ALSO
glEnable, glFrontFace GLCULLFACE(3G)
Man Page

14 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

facing a problem in redirection

Hi, I am doing this perl script print (@line(1..15)); the lines 1 to 15 get printed... how can i redirect this to file? thanks and regards vivek.s (4 Replies)
Discussion started by: vivekshankar
4 Replies

2. SCO

Terminal Allocation Problem

Hello All, I am facing a problem on SCO Open Server V 5x, We are using serial communication on dumb terminals, right now i am facing a problem on some terminals, as they are not showing thier previous tty no, as tty13 or tty18, but they are showing ttya6 or ttya4, i also tried to move and link... (5 Replies)
Discussion started by: Awadhesh
5 Replies

3. UNIX for Dummies Questions & Answers

OM not found

Hello everybody: Im facing this weird problem on my SUN V890 running SOL9, from time to time I keep getting this error from the prompt when i press enter for blank: OM: not found sometimes if I entered a coomand it will give me: OM(command name):not found, but repeating the same command it... (4 Replies)
Discussion started by: aladdin
4 Replies

4. UNIX for Advanced & Expert Users

Tracking user

dear all, I'm facing problem that is i have noticed from few days back that some body is deleting and making changes in the file from developement server where i'm working(in unix) so i want to track that who is using the server, what performancr they are doing and each every thing which r... (5 Replies)
Discussion started by: panknil
5 Replies

5. UNIX for Dummies Questions & Answers

Problem/help with Sed

Hi, I am new to scripting in unix.. Anyway i'll jump straight to the problem that i am facing.. I have a file that, i have to search in the file for some specific data and update it. For ex.. (a data row in the file) 12345678|abc what i do is sed 's/\(12345678\).*/\1|cd/' fileName.dat... (3 Replies)
Discussion started by: amolbakre
3 Replies

6. AIX

TL Upgrade back-out

Hi I updated the TL to a higher version, now facing problem with application. How will I back-out? Any other option than restoring mksysb? Bala (3 Replies)
Discussion started by: balaji_prk
3 Replies

7. Shell Programming and Scripting

Sed to handle newline specific name modifiication

Hi, Using sed, i need to edit two functions data as explained below. C1 function axis need to be change as axis1 and in C2 function width and height name should change as width2 and height2. Input file : c1 { width=0 text=Pen height=0 axis=no mode=6 }... (11 Replies)
Discussion started by: vasanth_vadalur
11 Replies

8. Programming

Migration of C Apps from AIX to LINUX

Hi All, I am currently facing new problem of migrating C(c language) application from AIX machine to Linux machine. We are using GCC to compile the source code.. But facing with the compilation issues, with lot of GCC C libs differing between AIX box to Linux box... Pls help me... (1 Reply)
Discussion started by: karthikc
1 Replies

9. UNIX for Dummies Questions & Answers

Transpose and combining two files

Greetings. I am a UNIX newbies. I am currently facing difficulties dealing with a large data set and I would like to ask for helps. I have a input file like this: A B C D SK001 1 2 1 2 SK002 2 2 1 1 SK003 1 1 1 1 Is there any possibility for me to have an... (2 Replies)
Discussion started by: seiksoon
2 Replies

10. Shell Programming and Scripting

Alternative for wc -l

Hi techies .. This is my first posting hr .. Am facing a serious performance problem in counting the number of lines in the file. The input files i get will be in some 10 to 15 Gb of size or even sometimes more ..and I will load it to db I have used wc -l to confirm whether the loader... (14 Replies)
Discussion started by: rajesh_2383
14 Replies

11. Programming

man pages for commands and functions of same name?

Hi friends, I hope everyone is fine and doing well. I am facing this irritating problem. As you know that manual pages are available for both unix commands and c functions. Now when I try to check the manual pages for functions like read write exit I get the manual pages for the... (3 Replies)
Discussion started by: gabam
3 Replies

12. UNIX for Dummies Questions & Answers

Problem with VI display

Hi Experts, i am facing this problem with vi. Most of the time my vi display will show like below.it is hectic for me to .so again i have to do re size or maximize something like then it will come normal. HELP?? (2 Replies)
Discussion started by: prakumar
2 Replies

13. Solaris

Applictions are starting with nice -20

Hi All, In my Solaris 10 server, am facing a weird issue recently. issue am facing is, My applications are starting with nice -20 as default as 0, am not able to fix this checked my scripts, everything is the same. Also 2 users starting all apps with -20 instead of 0 can some one... (3 Replies)
Discussion started by: nanz143
3 Replies

14. Red Hat

LVextend problem

So, we are facing problem with extending LV... We had 2x300GB in mirror on IBM Xserver for rootvg. We failed one of the disks and replaced it with 600GB, rebuild it and did it with the other disk the same... Extended Virtual drive on RAID to 600GB. After that we have shut down the server and... (1 Reply)
Discussion started by: protein
1 Replies