Lines Matching +refs:is +refs:effective +refs:target

49     void GetTexImageANGLE(GLenum target, GLint level, GLenum format, GLenum type,
52 void GetRenderbufferImageANGLE(GLenum target, GLint level, GLenum format,
76 Add a paragraph: "If <pname> is IMPLEMENTATION_COLOR_READ_TYPE or
86 void GetTexImageANGLE(GLenum target, GLint level, GLenum format, GLenum type,
89 void GetRenderbufferImageANGLE(GLenum target, GLenum format, GLenum type,
92 For GetTexImageANGLE, <target> specifies the target to which the texture
93 object is bound. target must be one of TEXTURE_2D, TEXTURE_3D,
95 dimensional, two-dimensional array, cube map array respectively. <target>
99 For GetRenderbufferImageANGLE, <target> must be RENDERBUFFER.
101 <level> is a level-of-detail number, <format> is a pixel format from table 8.5,
102 and <type> is a pixel type from table 8.4.
105 with the indicated level-of-detail. If <format> is a color format then the
115 If <format> is DEPTH_COMPONENT, DEPTH_STENCIL, or STENCIL_INDEX, then
116 each depth component and/or stencil index is assigned with the same ordering of
120 If a pixel pack buffer is bound (as indicated by a non-zero value of PIXEL_-
121 PACK_BUFFER_BINDING), <pixels> is an offset into the pixel pack buffer;
122 otherwise, <pixels> is a pointer to client memory. Pixel storage modes that are
130 to memory locations is as defined for TexImage3D in section 8.5.
137 An INVALID_ENUM error is generated by GetTexImage if <target> is
141 An INVALID_ENUM error is generated by GetRenderbufferImage is <target> is not
144 An INVALID_VALUE error is generated if <level> is negative or larger than
147 An INVALID_OPERATION error is generated if any of the following mismatches
151 * <format> is a color format (one of the formats in table 8.3 whose target is
153 image is not a color format.
155 * <format> is DEPTH_COMPONENT and the base internal format is not
158 * <format> is DEPTH_STENCIL and the base internal format is not DEPTH_-
161 * <format> is STENCIL_INDEX and the base internal format is not
164 * <format> is one of the integer formats in table 8.5 and the internal format
165 of the texture or renderbuffer image is not integer, or <format> is not one
166 of the integer formats in table 8.5 and the internal format is integer.
168 An INVALID_OPERATION error is generated if a pixel pack buffer object
169 is bound and packing the texture or renderbuffer image into the buffer’s
172 An INVALID_OPERATION error is generated if a pixel pack buffer object
173 is bound and <pixels> is not evenly divisible by the number of basic machine
179 TEXTURE_RECTANGLE is accepted by GetTexImageANGLE and GetRenderbufferImageANGLE.
181 An INVALID_VALUE error is generated if <level> is non-zero and the effective
182 <target> is TEXTURE_RECTANGLE.