Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

glcopycolorsubtable(3g) [mojave man page]

GLCOPYCOLORSUBTABLE(3G) 												   GLCOPYCOLORSUBTABLE(3G)

NAME
glCopyColorSubTable - respecify a portion of a color table C SPECIFICATION
void glCopyColorSubTable( GLenum target, GLsizei start, GLint x, GLint y, GLsizei width ) PARAMETERS
target Must be one of GL_COLOR_TABLE, GL_POST_CONVOLUTION_COLOR_TABLE, or GL_POST_COLOR_MATRIX_COLOR_TABLE. start The starting index of the portion of the color table to be replaced. x, y The window coordinates of the left corner of the row of pixels to be copied. width The number of table entries to replace. DESCRIPTION
glCopyColorSubTable is used to respecify a contiguous portion of a color table previously defined using glColorTable. The pixels copied from the framebuffer replace the portion of the existing table from indices start to start + x - 1, inclusive. This region may not include any entries outside the range of the color table, as was originally specified. It is not an error to specify a subtexture with width of 0, but such a specification has no effect. NOTES
glCopyColorSubTable is present only if GL_ARB_imaging is returned when glGetString is called with an argument of GL_EXTENSIONS. ERRORS
GL_INVALID_VALUE is generated if target is not a previously defined color table. GL_INVALID_VALUE is generated if target is not one of the allowable values. GL_INVALID_VALUE is generated if start + x > width. GL_INVALID_OPERATION is generated if glCopyColorSubTable is executed between the execution of glBegin and the corresponding execution of glEnd. ASSOCIATED GETS
glGetColorTable, glGetColorTableParameter SEE ALSO
glColorSubTable, glColorTableParameter, glCopyColorTable, glCopyColorSubTable, glGetColorTable GLCOPYCOLORSUBTABLE(3G)

Check Out this Related Man Page

GLCOPYCOLORSUBTABLE(3G) 												   GLCOPYCOLORSUBTABLE(3G)

NAME
glCopyColorSubTable - respecify a portion of a color table C SPECIFICATION
void glCopyColorSubTable( GLenum target, GLsizei start, GLint x, GLint y, GLsizei width ) PARAMETERS
target Must be one of GL_COLOR_TABLE, GL_POST_CONVOLUTION_COLOR_TABLE, or GL_POST_COLOR_MATRIX_COLOR_TABLE. start The starting index of the portion of the color table to be replaced. x, y The window coordinates of the left corner of the row of pixels to be copied. width The number of table entries to replace. DESCRIPTION
glCopyColorSubTable is used to respecify a contiguous portion of a color table previously defined using glColorTable. The pixels copied from the framebuffer replace the portion of the existing table from indices start to $"start"~+~"x"~-~1$, inclusive. This region may not include any entries outside the range of the color table, as was originally specified. It is not an error to specify a subtexture with width of 0, but such a specification has no effect. NOTES
glCopyColorSubTable is present only if GL_ARB_imaging is returned when glGetString is called with an argument of GL_EXTENSIONS. ERRORS
GL_INVALID_VALUE is generated if target is not a previously defined color table. GL_INVALID_VALUE is generated if target is not one of the allowable values. GL_INVALID_VALUE is generated if $"start"~+~"x"~>~width$. GL_INVALID_OPERATION is generated if glCopyColorSubTable is executed between the execution of glBegin and the corresponding execution of glEnd. ASSOCIATED GETS
glGetColorTable, glGetColorTableParameter SEE ALSO
glColorSubTable(3G), glColorTableParameter(3G), glCopyColorTable(3G), glCopyColorSubTable(3G), glGetColorTable(3G) GLCOPYCOLORSUBTABLE(3G)
Man Page

5 More Discussions You Might Find Interesting

1. Programming

netcat like file transfer

Hi Folks I am not a c programmer .But i need help in writing a program which can do this any ideas on how to go about it . i start a server on the target server where files need to be copied start-server -port 5006 & ---start the server and listen it on a partcular port on the source... (2 Replies)
Discussion started by: linuxdba
2 Replies

2. UNIX for Advanced & Expert Users

Need shell script

Hi All, I had a requirement. 2 table are there. 1) source table 2) target table formula: - source table - target table Query:- 2 tables result should automatically store in another table called fallout. I want to execute this script in unix awk script. i would appreciate if any one... (1 Reply)
Discussion started by: ravi gongati
1 Replies

3. UNIX for Dummies Questions & Answers

Find and replace portion of file names

Hey all, So I know you can easily find and replace words and strings in text files, but is there an easy way to find and replace just a sub-portion of text in the file name. For example, in a directory I have tons of file names that start with F00001-0708, and I want to change all the files to... (2 Replies)
Discussion started by: hertingm
2 Replies

4. Shell Programming and Scripting

Need to cut a some required data from file

Data_Consolidation_Engine_Part_2_Job2..TgtArBkt: ORA-00942: table or view does not exist I have some thing like above in the file.. Upto this portion Data_Consolidation_Engine_Part_2_Job2..TgtArBkt: the length can be vary .. Can some one help me in taking this portion alone ORA-00942:... (7 Replies)
Discussion started by: saj
7 Replies

5. UNIX for Advanced & Expert Users

How to identify particular section using sed?

Hi, I have following data in a file. Not all but most of the lines start with letter 'T' has 8 SPACES from column 121 to 128 and I want to replace that portion with some dummy value. Is it possible through sed? Input File:- T1111111111111A 20140310000000005076358416369283 AAAAA ... (6 Replies)
Discussion started by: jnrohit2k
6 Replies