Searched defs:gl (Results 126 - 150 of 370) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DClear11.h18 namespace gl namespace
35 gl::Error clearFramebuffer(const gl::ClearParameters &clearParams, gl::Framebuffer *frameBuffer);
79 ID3D11DepthStencilState *getDepthStencilState(const gl::ClearParameters &clearParams);
H A DRenderStateCache.h19 namespace gl namespace
37 gl::Error getBlendState(const gl::Framebuffer *framebuffer, const gl::BlendState &blendState, ID3D11BlendState **outBlendState);
38 gl::Error getRasterizerState(const gl::RasterizerState &rasterState, bool scissorEnabled, ID3D11RasterizerState **outRasterizerState);
39 gl::Error getDepthStencilState(const gl::DepthStencilState &dsState, ID3D11DepthStencilState **outDSState);
40 gl::Error getSamplerState(const gl
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DvalidationES2.cpp22 namespace gl namespace
27 gl::Texture2D *texture)
43 if (gl::GetFormatTypeInfo(format, type).internalFormat != texture->getInternalFormat(level))
72 gl::TextureCubeMap *texture)
88 if (gl::GetFormatTypeInfo(format, type).internalFormat != texture->getInternalFormat(target, level))
145 const gl::Caps &caps = context->getCaps();
147 gl::Texture *texture = NULL;
163 gl::Texture2D *tex2d = context->getTexture2D();
203 gl::TextureCubeMap *texCube = context->getTextureCubeMap();
522 gl
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLTexture.h22 GrGLTexID(const GrGLInterface* gl, GrGLuint texID, bool isWrapped) argument
23 : fGL(gl)
H A DGrGLUtil.cpp13 void GrGLClearErr(const GrGLInterface* gl) { argument
14 while (GR_GL_NO_ERROR != gl->fFunctions.fGetError()) {}
37 void GrGLCheckErr(const GrGLInterface* gl, argument
40 uint32_t err = GR_GL_GET_ERROR(gl);
201 GrGLVersion GrGLGetVersion(const GrGLInterface* gl) { argument
203 GR_GL_CALL_RET(gl, v, GetString(GR_GL_VERSION));
207 GrGLSLVersion GrGLGetGLSLVersion(const GrGLInterface* gl) { argument
209 GR_GL_CALL_RET(gl, v, GetString(GR_GL_SHADING_LANGUAGE_VERSION));
213 GrGLVendor GrGLGetVendor(const GrGLInterface* gl) { argument
215 GR_GL_CALL_RET(gl,
219 GrGLGetRenderer(const GrGLInterface* gl) argument
[all...]
/external/deqp/framework/opengl/
H A DgluProgramInterfaceQuery.hpp89 int getProgramResourceInt (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam);
90 deUint32 getProgramResourceUint (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam);
92 void getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::string& dst);
93 std::string getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index);
95 void getProgramInterfaceBlockInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceBlockInfo& info);
96 InterfaceBlockInfo getProgramInterfaceBlockInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index);
98 void getProgramInterfaceVariableInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceVariableInfo& info);
99 InterfaceVariableInfo getProgramInterfaceVariableInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index);
103 inline int getProgramResourceInt (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam) argument
105 return (int)getProgramResourceUint(gl, progra
108 getProgramResourceName(const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index) argument
115 getProgramInterfaceBlockInfo(const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index) argument
122 getProgramInterfaceVariableInfo(const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index) argument
[all...]
H A DgluRenderContext.cpp178 static std::vector<std::string> getExtensions (const glw::Functions& gl, ApiType apiType) argument
185 TCU_CHECK(gl.getString);
187 const char* extStr = (const char*)gl.getString(GL_EXTENSIONS);
188 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetString(GL_EXTENSIONS)");
200 TCU_CHECK(gl.getIntegerv && gl.getStringi);
202 gl.getIntegerv(GL_NUM_EXTENSIONS, &numExtensions);
203 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetIntegerv(GL_NUM_EXTENSIONS)");
211 const char* const ext = (const char*)gl.getStringi(GL_EXTENSIONS, ndx);
212 GLU_EXPECT_NO_ERROR(gl
[all...]
/external/deqp/framework/platform/osx/
H A DtcuOSXPlatform.cpp100 static glu::ApiType getVersion (const glw::Functions& gl) argument
104 gl.getIntegerv(GL_MAJOR_VERSION, &major);
105 gl.getIntegerv(GL_MINOR_VERSION, &minor);
106 GLU_EXPECT_NO_ERROR(gl.getError(), "Failed to query exact GL version");
/external/deqp/modules/gles2/functional/
H A Des2fFboStateQueryTests.cpp58 void checkAttachmentParam(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum target, GLenum attachment, GLenum pname, GLenum reference) argument
61 gl.glGetFramebufferAttachmentParameteriv(target, attachment, pname, &state);
67 void checkColorAttachmentParam(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum target, GLenum pname, GLenum reference) argument
69 checkAttachmentParam(testCtx, gl, target, GL_COLOR_ATTACHMENT0, pname, reference);
H A Des2fImplementationLimitTests.cpp47 T query (const glw::Functions& gl, deUint32 param);
83 GLint query<GLint> (const glw::Functions& gl, deUint32 param) argument
86 gl.getIntegerv(param, &val);
91 GLfloat query<GLfloat> (const glw::Functions& gl, deUint32 param) argument
94 gl.getFloatv(param, &val);
99 NegInt query<NegInt> (const glw::Functions& gl, deUint32 param) argument
101 return NegInt(query<GLint>(gl, param));
105 Boolean query<Boolean> (const glw::Functions& gl, deUint32 param) argument
108 gl.getBooleanv(param, &val);
113 FloatRange query<FloatRange> (const glw::Functions& gl, deUint3 argument
158 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
[all...]
/external/deqp/modules/gles2/performance/
H A Des2pBlendTests.cpp114 const glw::Functions& gl = m_renderCtx.getFunctions(); local
116 gl.enable(GL_BLEND);
117 gl.blendEquationSeparate(m_modeRGB, m_modeAlpha);
118 gl.blendFuncSeparate(m_srcRGB, m_dstRGB, m_srcAlpha, m_dstAlpha);
120 GLU_EXPECT_NO_ERROR(gl.getError(), "After render state setup");
/external/deqp/modules/gles3/performance/
H A Des3pBlendTests.cpp117 const glw::Functions& gl = m_renderCtx.getFunctions(); local
119 gl.enable(GL_BLEND);
120 gl.blendEquationSeparate(m_modeRGB, m_modeAlpha);
121 gl.blendFuncSeparate(m_srcRGB, m_dstRGB, m_srcAlpha, m_dstAlpha);
123 GLU_EXPECT_NO_ERROR(gl.getError(), "After render state setup");
/external/deqp/modules/gles31/functional/
H A Des31fShaderStateQueryTests.cpp108 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); local
122 gl.getProgramiv(program.getProgram(), GL_ACTIVE_UNIFORMS, &uniforms);
135 gl.getActiveUniformsiv(program.getProgram(), 1, &uniformIndex, GL_UNIFORM_TYPE, &type);
144 GLU_EXPECT_NO_ERROR(gl.getError(), "");
/external/deqp/modules/glshared/
H A DglsShaderPerformanceMeasurer.cpp144 const glw::Functions& gl = m_renderCtx.getFunctions(); local
150 gl.genVertexArrays(1, &m_vao);
151 gl.bindVertexArray(m_vao);
152 GLU_EXPECT_NO_ERROR(gl.getError(), "Create VAO");
186 gl.genBuffers(1, &m_indexBuffer);
187 gl.bindBuffer(GL_ELEMENT_ARRAY_BUFFER, m_indexBuffer);
188 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, (GLsizeiptr)(indices.size()*sizeof(deUint16)), &indices[0], GL_STATIC_DRAW);
190 GLU_EXPECT_NO_ERROR(gl.getError(), "Upload index data");
195 gl.genBuffers((GLsizei)m_attribBuffers.size(), &m_attribBuffers[0]);
202 gl
[all...]
/external/iptables/iptables/
H A Dxshared.c114 struct xtables_globals *gl)
157 gl->opts = xtables_options_xfrm(gl->orig_opts,
158 gl->opts,
162 gl->opts = xtables_merge_options(gl->orig_opts,
163 gl->opts,
166 if (gl->opts == NULL)
113 command_default(struct iptables_command_state *cs, struct xtables_globals *gl) argument
/external/replicaisland/src/com/replica/replicaisland/
H A DTextureLibrary.java82 public Texture loadTexture(Context context, GL10 gl, int resourceID) { argument
84 texture = loadBitmap(context, gl, texture);
89 public void loadAll(Context context, GL10 gl) { argument
92 loadBitmap(context, gl, mTextureHash[x]);
98 public void deleteAll(GL10 gl) { argument
105 gl.glDeleteTextures(1, mTextureNameWorkspace, 0);
106 int error = gl.glGetError();
127 protected Texture loadBitmap(Context context, GL10 gl, Texture texture) { argument
128 assert gl != null;
132 gl
[all...]
/external/skia/src/gpu/gl/
H A DGrGLTexture.h22 GrGLTexID(const GrGLInterface* gl, GrGLuint texID, bool isWrapped) argument
23 : fGL(gl)
H A DGrGLUtil.cpp13 void GrGLClearErr(const GrGLInterface* gl) { argument
14 while (GR_GL_NO_ERROR != gl->fFunctions.fGetError()) {}
37 void GrGLCheckErr(const GrGLInterface* gl, argument
40 uint32_t err = GR_GL_GET_ERROR(gl);
237 GrGLVersion GrGLGetVersion(const GrGLInterface* gl) { argument
239 GR_GL_CALL_RET(gl, v, GetString(GR_GL_VERSION));
243 GrGLSLVersion GrGLGetGLSLVersion(const GrGLInterface* gl) { argument
245 GR_GL_CALL_RET(gl, v, GetString(GR_GL_SHADING_LANGUAGE_VERSION));
249 GrGLVendor GrGLGetVendor(const GrGLInterface* gl) { argument
251 GR_GL_CALL_RET(gl,
255 GrGLGetRenderer(const GrGLInterface* gl) argument
[all...]
/external/chromium_org/cc/resources/
H A Dtexture_uploader.cc43 TextureUploader::Query::Query(GLES2Interface* gl) argument
44 : gl_(gl),
79 TextureUploader::TextureUploader(GLES2Interface* gl) argument
80 : gl_(gl),
H A Dvideo_resource_updater.cc28 explicit SyncPointClientImpl(gpu::gles2::GLES2Interface* gl) : gl_(gl) {} argument
207 gpu::gles2::GLES2Interface* gl = context_provider_->ContextGL(); local
209 GLC(gl, gl->GenMailboxCHROMIUM(mailbox.name));
212 GLC(gl,
213 gl->ProduceTextureDirectCHROMIUM(
/external/chromium_org/cc/test/
H A Dlayer_tree_pixel_test.cc235 GLES2Interface* gl = context->GetImplementation(); local
238 gl->WaitSyncPointCHROMIUM(texture_mailbox.sync_point());
241 gl->GenTextures(1, &texture_id);
242 gl->BindTexture(GL_TEXTURE_2D, texture_id);
243 gl->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
244 gl->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
245 gl->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
246 gl->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
247 gl->ConsumeTextureCHROMIUM(texture_mailbox.target(), texture_mailbox.name());
248 gl
297 GLES2Interface* gl = context->GetImplementation(); local
313 GLES2Interface* gl = context->GetImplementation(); local
[all...]
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_unittest_copyrequest.cc799 gpu::gles2::GLES2Interface* gl = external_context_provider_->ContextGL(); variable
801 gl->GenMailboxCHROMIUM(mailbox.name);
802 sync_point_ = gl->InsertSyncPointCHROMIUM();
/external/chromium_org/content/common/gpu/client/
H A Dgl_helper.h42 ScopedGLuint(gpu::gles2::GLES2Interface* gl, argument
45 : gl_(gl), id_(0u), delete_func_(delete_func) {
69 explicit ScopedBuffer(gpu::gles2::GLES2Interface* gl) argument
70 : ScopedGLuint(gl,
77 explicit ScopedFramebuffer(gpu::gles2::GLES2Interface* gl) argument
78 : ScopedGLuint(gl,
85 explicit ScopedTexture(gpu::gles2::GLES2Interface* gl) argument
86 : ScopedGLuint(gl,
96 ScopedBinder(gpu::gles2::GLES2Interface* gl, GLuint id, BindFunc bind_func) argument
97 : gl_(gl), bind_func
113 ScopedBufferBinder(gpu::gles2::GLES2Interface* gl, GLuint id) argument
120 ScopedFramebufferBinder(gpu::gles2::GLES2Interface* gl, GLuint id) argument
129 ScopedTextureBinder(gpu::gles2::GLES2Interface* gl, GLuint id) argument
[all...]
H A Dwebgraphicscontext3d_command_buffer_impl.cc290 gpu::gles2::GLES2Interface* gl = GetGLInterface(); local
291 if (gl) {
297 gl->Flush();
/external/chromium_org/content/renderer/media/android/
H A Dstream_texture_factory_synchronous_impl.cc20 #include "ui/gl/android/surface_texture.h"
201 GLES2Interface* gl = context_provider_->ContextGL(); local
202 gl->GenTextures(1, texture_id);
203 stream_id = gl->CreateStreamTextureCHROMIUM(*texture_id);
205 gl->GenMailboxCHROMIUM(texture_mailbox->name);
206 gl->ProduceTextureDirectCHROMIUM(

Completed in 926 milliseconds

1234567891011>>