Home
last modified time | relevance | path

Searched refs:GLenum (Results 1 – 25 of 36) sorted by relevance

12

/device/generic/goldfish/opengl/tests/gles_android_wrapper/
Dgles_proc.h23 typedef void (* glAlphaFunc_t) (GLenum, GLclampf);
26 typedef void (* glClipPlanef_t) (GLenum, const GLfloat*);
29 typedef void (* glFogf_t) (GLenum, GLfloat);
30 typedef void (* glFogfv_t) (GLenum, const GLfloat*);
32 typedef void (* glGetClipPlanef_t) (GLenum, GLfloat*);
33 typedef void (* glGetFloatv_t) (GLenum, GLfloat*);
34 typedef void (* glGetLightfv_t) (GLenum, GLenum, GLfloat*);
35 typedef void (* glGetMaterialfv_t) (GLenum, GLenum, GLfloat*);
36 typedef void (* glGetTexEnvfv_t) (GLenum, GLenum, GLfloat*);
37 typedef void (* glGetTexParameterfv_t) (GLenum, GLenum, GLfloat*);
[all …]
Dgles.cpp56 void glAlphaFunc(GLenum func, GLclampf ref) in glAlphaFunc()
71 void glClipPlanef(GLenum plane, const GLfloat *equation) in glClipPlanef()
86 void glFogf(GLenum pname, GLfloat param) in glFogf()
91 void glFogfv(GLenum pname, const GLfloat *params) in glFogfv()
101 void glGetClipPlanef(GLenum pname, GLfloat eqn[4]) in glGetClipPlanef()
106 void glGetFloatv(GLenum pname, GLfloat *params) in glGetFloatv()
111 void glGetLightfv(GLenum light, GLenum pname, GLfloat *params) in glGetLightfv()
116 void glGetMaterialfv(GLenum face, GLenum pname, GLfloat *params) in glGetMaterialfv()
121 void glGetTexEnvfv(GLenum env, GLenum pname, GLfloat *params) in glGetTexEnvfv()
126 void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat *params) in glGetTexParameterfv()
[all …]
/device/generic/goldfish/opengl/system/GLESv1_enc/
Dgl_client_proc.h12 typedef void (gl_APIENTRY *glAlphaFunc_client_proc_t) (void * ctx, GLenum, GLclampf);
15 typedef void (gl_APIENTRY *glClipPlanef_client_proc_t) (void * ctx, GLenum, const GLfloat*);
18 typedef void (gl_APIENTRY *glFogf_client_proc_t) (void * ctx, GLenum, GLfloat);
19 typedef void (gl_APIENTRY *glFogfv_client_proc_t) (void * ctx, GLenum, const GLfloat*);
21 typedef void (gl_APIENTRY *glGetClipPlanef_client_proc_t) (void * ctx, GLenum, GLfloat*);
22 typedef void (gl_APIENTRY *glGetFloatv_client_proc_t) (void * ctx, GLenum, GLfloat*);
23 typedef void (gl_APIENTRY *glGetLightfv_client_proc_t) (void * ctx, GLenum, GLenum, GLfloat*);
24 typedef void (gl_APIENTRY *glGetMaterialfv_client_proc_t) (void * ctx, GLenum, GLenum, GLfloat*);
25 typedef void (gl_APIENTRY *glGetTexEnvfv_client_proc_t) (void * ctx, GLenum, GLenum, GLfloat*);
26 typedef void (gl_APIENTRY *glGetTexParameterfv_client_proc_t) (void * ctx, GLenum, GLenum, GLfloat*…
[all …]
Dgl_entry.cpp9 void glAlphaFunc(GLenum func, GLclampf ref);
12 void glClipPlanef(GLenum plane, const GLfloat* equation);
15 void glFogf(GLenum pname, GLfloat param);
16 void glFogfv(GLenum pname, const GLfloat* params);
18 void glGetClipPlanef(GLenum pname, GLfloat* eqn);
19 void glGetFloatv(GLenum pname, GLfloat* params);
20 void glGetLightfv(GLenum light, GLenum pname, GLfloat* params);
21 void glGetMaterialfv(GLenum face, GLenum pname, GLfloat* params);
22 void glGetTexEnvfv(GLenum env, GLenum pname, GLfloat* params);
23 void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat* params);
[all …]
DGLEncoder.h34 size_t pixelDataSize(GLsizei width, GLsizei height, GLenum format, GLenum type, int pack);
39 virtual void setError(GLenum error){ m_error = error; }; in setError()
40 virtual GLenum getError() { return m_error; }; in getError()
42 void override2DTextureTarget(GLenum target);
50 GLenum m_error;
102 static GLenum s_glGetError(void * self);
103 static void s_glGetIntegerv(void *self, GLenum pname, GLint *ptr);
104 static void s_glGetBooleanv(void *self, GLenum pname, GLboolean *ptr);
105 static void s_glGetFloatv(void *self, GLenum pname, GLfloat *ptr);
106 static void s_glGetFixedv(void *self, GLenum pname, GLfixed *ptr);
[all …]
DGLEncoder.cpp44 GLenum GLEncoder::s_glGetError(void * self) in s_glGetError()
47 GLenum err = ctx->getError(); in s_glGetError()
71 void GLEncoder::s_glGetIntegerv(void *self, GLenum param, GLint *ptr) in s_glGetIntegerv()
109 void GLEncoder::s_glGetFloatv(void *self, GLenum param, GLfloat *ptr) in s_glGetFloatv()
148 void GLEncoder::s_glGetFixedv(void *self, GLenum param, GLfixed *ptr) in s_glGetFixedv()
187 void GLEncoder::s_glGetBooleanv(void *self, GLenum param, GLboolean *ptr) in s_glGetBooleanv()
222 void GLEncoder::s_glGetPointerv(void * self, GLenum param, GLvoid **params) in s_glGetPointerv()
236 const GLubyte *GLEncoder::s_glGetString(void *self, GLenum name) in s_glGetString()
258 void GLEncoder::s_glPixelStorei(void *self, GLenum param, GLint value) in s_glPixelStorei()
266 void GLEncoder::s_glVertexPointer(void *self, int size, GLenum type, GLsizei stride, const void *da… in s_glVertexPointer()
[all …]
Dgl_enc.cpp20 void glAlphaFunc_enc(void *self , GLenum func, GLclampf ref) in glAlphaFunc_enc()
69 void glClipPlanef_enc(void *self , GLenum plane, const GLfloat* equation) in glClipPlanef_enc()
121 void glFogf_enc(void *self , GLenum pname, GLfloat param) in glFogf_enc()
137 void glFogfv_enc(void *self , GLenum pname, const GLfloat* params) in glFogfv_enc()
175 void glGetClipPlanef_enc(void *self , GLenum pname, GLfloat* eqn) in glGetClipPlanef_enc()
193 void glGetFloatv_enc(void *self , GLenum pname, GLfloat* params) in glGetFloatv_enc()
211 void glGetLightfv_enc(void *self , GLenum light, GLenum pname, GLfloat* params) in glGetLightfv_enc()
230 void glGetMaterialfv_enc(void *self , GLenum face, GLenum pname, GLfloat* params) in glGetMaterialfv_enc()
249 void glGetTexEnvfv_enc(void *self , GLenum env, GLenum pname, GLfloat* params) in glGetTexEnvfv_enc()
268 void glGetTexParameterfv_enc(void *self , GLenum target, GLenum pname, GLfloat* params) in glGetTexParameterfv_enc()
[all …]
DGLEncoderUtils.h20 …size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pa…
DGLEncoderUtils.cpp22 size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pac… in pixelDataSize()
/device/generic/goldfish/opengl/system/GLESv2_enc/
Dgl2_client_proc.h12 typedef void (gl2_APIENTRY *glActiveTexture_client_proc_t) (void * ctx, GLenum);
15 typedef void (gl2_APIENTRY *glBindBuffer_client_proc_t) (void * ctx, GLenum, GLuint);
16 typedef void (gl2_APIENTRY *glBindFramebuffer_client_proc_t) (void * ctx, GLenum, GLuint);
17 typedef void (gl2_APIENTRY *glBindRenderbuffer_client_proc_t) (void * ctx, GLenum, GLuint);
18 typedef void (gl2_APIENTRY *glBindTexture_client_proc_t) (void * ctx, GLenum, GLuint);
20 typedef void (gl2_APIENTRY *glBlendEquation_client_proc_t) (void * ctx, GLenum);
21 typedef void (gl2_APIENTRY *glBlendEquationSeparate_client_proc_t) (void * ctx, GLenum, GLenum);
22 typedef void (gl2_APIENTRY *glBlendFunc_client_proc_t) (void * ctx, GLenum, GLenum);
23 …oid (gl2_APIENTRY *glBlendFuncSeparate_client_proc_t) (void * ctx, GLenum, GLenum, GLenum, GLenum);
24 …(gl2_APIENTRY *glBufferData_client_proc_t) (void * ctx, GLenum, GLsizeiptr, const GLvoid*, GLenum);
[all …]
Dgl2_entry.cpp9 void glActiveTexture(GLenum texture);
12 void glBindBuffer(GLenum target, GLuint buffer);
13 void glBindFramebuffer(GLenum target, GLuint framebuffer);
14 void glBindRenderbuffer(GLenum target, GLuint renderbuffer);
15 void glBindTexture(GLenum target, GLuint texture);
17 void glBlendEquation(GLenum mode);
18 void glBlendEquationSeparate(GLenum modeRGB, GLenum modeAlpha);
19 void glBlendFunc(GLenum sfactor, GLenum dfactor);
20 void glBlendFuncSeparate(GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
21 void glBufferData(GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage);
[all …]
DGL2Encoder.h40 virtual void setError(GLenum error){ m_error = error; }; in setError()
41 virtual GLenum getError() { return m_error; }; in getError()
43 void override2DTextureTarget(GLenum target);
51 GLenum m_error;
60 bool updateHostTexture2DBinding(GLenum texUnit, GLenum newTarget);
63 static GLenum s_glGetError(void * self);
69 static void s_glPixelStorei(void *self, GLenum param, GLint value);
72 static const GLubyte * s_glGetString(void *self, GLenum name);
75 static void s_glBindBuffer(void *self, GLenum target, GLuint id);
79 …static void s_glBufferData(void *self, GLenum target, GLsizeiptr size, const GLvoid * data, GLenum
[all …]
DGL2EncoderUtils.h21 size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pac…
22 …aSize3D(void *self, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int …
23 GLenum uniformType(void * self, GLuint program, GLint location);
DGL2EncoderUtils.cpp23 size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pac… in pixelDataSize()
30 …aSize3D(void *self, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int … in pixelDataSize3D()
36 GLenum uniformType(void * self, GLuint program, GLint location) in uniformType()
DGL2Encoder.cpp133 GLenum GL2Encoder::s_glGetError(void * self) in s_glGetError()
136 GLenum err = ctx->getError(); in s_glGetError()
153 const GLubyte *GL2Encoder::s_glGetString(void *self, GLenum name) in s_glGetString()
175 void GL2Encoder::s_glPixelStorei(void *self, GLenum param, GLint value) in s_glPixelStorei()
184 void GL2Encoder::s_glBindBuffer(void *self, GLenum target, GLuint id) in s_glBindBuffer()
193 void GL2Encoder::s_glBufferData(void * self, GLenum target, GLsizeiptr size, const GLvoid * data, G… in s_glBufferData()
205 void GL2Encoder::s_glBufferSubData(void * self, GLenum target, GLintptr offset, GLsizeiptr size, co… in s_glBufferSubData()
212 GLenum res = ctx->m_shared->subUpdateBufferData(bufferId, offset, size, (void*)data); in s_glBufferSubData()
229 void GL2Encoder::s_glVertexAttribPointer(void *self, GLuint indx, GLint size, GLenum type, GLboolea… in s_glVertexAttribPointer()
236 void GL2Encoder::s_glGetIntegerv(void *self, GLenum param, GLint *ptr) in s_glGetIntegerv()
[all …]
Dgl2_enc.cpp20 void glActiveTexture_enc(void *self , GLenum texture) in glActiveTexture_enc()
70 void glBindBuffer_enc(void *self , GLenum target, GLuint buffer) in glBindBuffer_enc()
86 void glBindFramebuffer_enc(void *self , GLenum target, GLuint framebuffer) in glBindFramebuffer_enc()
102 void glBindRenderbuffer_enc(void *self , GLenum target, GLuint renderbuffer) in glBindRenderbuffer_enc()
118 void glBindTexture_enc(void *self , GLenum target, GLuint texture) in glBindTexture_enc()
152 void glBlendEquation_enc(void *self , GLenum mode) in glBlendEquation_enc()
167 void glBlendEquationSeparate_enc(void *self , GLenum modeRGB, GLenum modeAlpha) in glBlendEquationSeparate_enc()
183 void glBlendFunc_enc(void *self , GLenum sfactor, GLenum dfactor) in glBlendFunc_enc()
199 void glBlendFuncSeparate_enc(void *self , GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dst… in glBlendFuncSeparate_enc()
217 void glBufferData_enc(void *self , GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage) in glBufferData_enc()
[all …]
/device/generic/goldfish/opengl/system/egl/
DClientAPIExts.in9 (GLenum target, GLeglImageOES image),
13 (GLenum target, GLeglImageOES image),
17 (GLenum modeRGB, GLenum modeAlpha),
21 (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha),
25 (GLenum mode),
37 (GLint size, GLenum type, GLsizei stride, const GLvoid * pointer),
41 (GLint size, GLenum type, GLsizei stride, const GLvoid * pointer),
57 (GLenum plane, const GLfloat *equation),
61 (GLenum pname, GLfloat * eqn),
69 (GLenum type, GLsizei stride, const GLvoid *pointer),
[all …]
/device/generic/goldfish/opengl/shared/OpenglCodecCommon/
DGLClientState.h58 GLenum type;
62 GLenum glConst;
82 int setPixelStore(GLenum param, GLint value);
86 …void setState(int location, int size, GLenum type, GLboolean normalized, GLsizei stride, const vo…
90 int getLocation(GLenum loc);
100 int bindBuffer(GLenum target, GLuint id) in bindBuffer()
116 int getBuffer(GLenum target) in getBuffer()
131 size_t pixelDataSize(GLsizei width, GLsizei height, GLenum format, GLenum type, int pack) const;
150 GLenum setActiveTextureUnit(GLenum texture);
151 GLenum getActiveTextureUnit() const;
[all …]
DGLSharedGroup.h52 GLenum type;
75 void setIndexInfo(GLuint index, GLint base, GLint size, GLenum type);
78 GLenum getTypeForLocation(GLint location);
85 GLint getNextSamplerUniform(GLint index, GLint* val, GLenum* target);
86 bool setSamplerUniform(GLint appLoc, GLint val, GLenum* target);
117 GLenum subUpdateBufferData(GLuint bufferId, GLintptr offset, GLsizeiptr size, void * data);
127 …void setProgramIndexInfo(GLuint program, GLuint index, GLint base, GLint size, GLenum type, con…
128 GLenum getProgramUniformType(GLuint program, GLint location);
133 GLint getNextSamplerUniform(GLuint program, GLint index, GLint* val, GLenum* target) const;
134 bool setSamplerUniform(GLuint program, GLint appLoc, GLint val, GLenum* target);
DGLClientState.cpp85 void GLClientState::setState(int location, int size, GLenum type, GLboolean normalized, GLsizei str… in setState()
130 int GLClientState::getLocation(GLenum loc) in getLocation()
162 void GLClientState::getClientStatePointer(GLenum pname, GLvoid** params) in getClientStatePointer()
199 int GLClientState::setPixelStore(GLenum param, GLint value) in setPixelStore()
226 size_t GLClientState::pixelDataSize(GLsizei width, GLsizei height, GLenum format, GLenum type, int … in pixelDataSize()
246 GLenum GLClientState::setActiveTextureUnit(GLenum texture) in setActiveTextureUnit()
256 GLenum GLClientState::getActiveTextureUnit() const in getActiveTextureUnit()
261 void GLClientState::enableTextureTarget(GLenum target) in enableTextureTarget()
273 void GLClientState::disableTextureTarget(GLenum target) in disableTextureTarget()
285 GLenum GLClientState::getPriorityEnabledTarget(GLenum allDisabled) const in getPriorityEnabledTarget()
[all …]
DglUtils.h49 size_t glSizeof(GLenum type);
50 size_t glUtilsParamSize(GLenum param);
52 int size, GLenum type, unsigned int stride,
55 int size, GLenum type, unsigned int stride,
57 int glUtilsPixelBitSize(GLenum format, GLenum type);
DglUtils.cpp21 size_t glSizeof(GLenum type) in glSizeof()
78 size_t glUtilsParamSize(GLenum param) in glUtilsParamSize()
332 int size, GLenum type, unsigned int stride, in glUtilsPackPointerData()
350 int size, GLenum type, unsigned int stride, in glUtilsWritePackPointerData()
368 int glUtilsPixelBitSize(GLenum format, GLenum type) in glUtilsPixelBitSize()
/device/generic/goldfish/opengl/system/renderControl_enc/
DrenderControl_client_proc.h24 …enderControl_APIENTRY *rcCreateColorBuffer_client_proc_t) (void * ctx, uint32_t, uint32_t, GLenum);
35 …lorBuffer_client_proc_t) (void * ctx, uint32_t, GLint, GLint, GLint, GLint, GLenum, GLenum, void*);
36 …lorBuffer_client_proc_t) (void * ctx, uint32_t, GLint, GLint, GLint, GLint, GLenum, GLenum, void*);
DrenderControl_entry.cpp21 uint32_t rcCreateColorBuffer(uint32_t width, uint32_t height, GLenum internalFormat);
32 …int32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLenum format, GLenum type, void…
33 …int32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLenum format, GLenum type, void…
116 uint32_t rcCreateColorBuffer(uint32_t width, uint32_t height, GLenum internalFormat) in rcCreateColorBuffer()
182 …int32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLenum format, GLenum type, void… in rcReadColorBuffer()
188 …int32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLenum format, GLenum type, void… in rcUpdateColorBuffer()
DrenderControl.in13 GL_ENTRY(uint32_t, rcCreateColorBuffer, uint32_t width, uint32_t height, GLenum internalFormat)
24 …int32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLenum format, GLenum type, void…
25 …int32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLenum format, GLenum type, void…

12