Searched defs:gl (Results 76 - 100 of 370) sorted by relevance

1234567891011>>

/external/deqp/framework/opengl/
H A DgluProgramInterfaceQuery.cpp33 deUint32 getProgramResourceUint (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam) argument
36 gl.getProgramResourceiv(program, programInterface, index, 1, &queryParam, 1, DE_NULL, (int*)&value);
37 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetProgramResourceiv()");
41 void getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::string& dst) argument
43 const int length = getProgramResourceInt(gl, program, programInterface, index, GL_NAME_LENGTH);
48 gl.getProgramResourceName(program, programInterface, index, (int)buf.size(), DE_NULL, &buf[0]);
49 GLU_EXPECT_NO_ERROR(gl.getError(), "glGetProgramResourceName()");
61 static void getProgramInterfaceActiveVariables (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::vector<int>& activeVariables) argument
63 const int numActiveVariables = getProgramResourceInt(gl, program, programInterface, index, GL_NUM_ACTIVE_VARIABLES);
69 gl
74 getProgramInterfaceBlockInfo(const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceBlockInfo& info) argument
86 getProgramInterfaceVariableInfo(const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceVariableInfo& info) argument
[all...]
H A DgluCallLogWrapper.cpp35 CallLogWrapper::CallLogWrapper (const glw::Functions& gl, tcu::TestLog& log) argument
36 : m_gl (gl)
H A DgluFboRenderContext.cpp180 const glw::Functions& gl = m_context->getFunctions(); local
189 if (config.numSamples > 0 && !gl.renderbufferStorageMultisample)
198 gl.getIntegerv(GL_MAX_RENDERBUFFER_SIZE, &maxSize);
207 gl.genRenderbuffers(1, &m_colorBuffer);
208 gl.bindRenderbuffer(GL_RENDERBUFFER, m_colorBuffer);
211 gl.renderbufferStorageMultisample(GL_RENDERBUFFER, config.numSamples, colorFormat, width, height);
213 gl.renderbufferStorage(GL_RENDERBUFFER, colorFormat, width, height);
215 gl.bindRenderbuffer(GL_RENDERBUFFER, 0);
216 GLU_EXPECT_NO_ERROR(gl.getError(), "Creating color renderbuffer");
223 gl
263 const glw::Functions& gl = m_context->getFunctions(); local
[all...]
/external/deqp/framework/opengl/wrapper/
H A DglwInitFunctions.cpp35 void initES20 (Functions* gl, const FunctionLoader* loader) argument
40 void initES30 (Functions* gl, const FunctionLoader* loader) argument
45 void initES31 (Functions* gl, const FunctionLoader* loader) argument
50 void initGL30Core (Functions* gl, const FunctionLoader* loader) argument
55 void initGL31Core (Functions* gl, const FunctionLoader* loader) argument
60 void initGL32Core (Functions* gl, const FunctionLoader* loader) argument
65 void initGL33Core (Functions* gl, const FunctionLoader* loader) argument
70 void initGL40Core (Functions* gl, const FunctionLoader* loader) argument
75 void initGL41Core (Functions* gl, const FunctionLoader* loader) argument
80 void initGL42Core (Functions* gl, cons argument
85 initGL43Core(Functions* gl, const FunctionLoader* loader) argument
90 initGL44Core(Functions* gl, const FunctionLoader* loader) argument
95 initExtensionsShared(Functions* gl, const FunctionLoader* loader, const std::set<std::string>& extensions) argument
103 initExtensionsGL(Functions* gl, const FunctionLoader* loader, int numExtensions, const char* const* extensions) argument
134 initExtensionsES(Functions* gl, const FunctionLoader* loader, int numExtensions, const char* const* extensions) argument
[all...]
/external/chromium_org/cc/output/
H A Dgeometry_binding.cc13 GeometryBinding::GeometryBinding(gpu::gles2::GLES2Interface* gl, argument
15 : gl_(gl), quad_vertices_vbo_(0), quad_elements_vbo_(0) {
/external/chromium_org/cc/resources/
H A Dtexture_uploader.h32 static scoped_ptr<TextureUploader> Create(gpu::gles2::GLES2Interface* gl) { argument
33 return make_scoped_ptr(new TextureUploader(gl));
58 static scoped_ptr<Query> Create(gpu::gles2::GLES2Interface* gl) { argument
59 return make_scoped_ptr(new Query(gl));
73 explicit Query(gpu::gles2::GLES2Interface* gl);
84 explicit TextureUploader(gpu::gles2::GLES2Interface* gl);
/external/chromium_org/content/browser/compositor/
H A Dbuffer_queue.cc28 gpu::gles2::GLES2Interface* gl = context_provider_->ContextGL(); local
30 gl->DeleteFramebuffers(1, &fbo_);
34 gpu::gles2::GLES2Interface* gl = context_provider_->ContextGL(); local
35 gl->GenFramebuffers(1, &fbo_);
40 gpu::gles2::GLES2Interface* gl = context_provider_->ContextGL(); local
41 gl->BindFramebuffer(GL_FRAMEBUFFER, fbo_);
45 gl->FramebufferTexture2D(GL_FRAMEBUFFER,
103 gpu::gles2::GLES2Interface* gl = context_provider_->ContextGL(); local
104 gl->BindFramebuffer(GL_FRAMEBUFFER, fbo_);
105 gl
131 gpu::gles2::GLES2Interface* gl = context_provider_->ContextGL(); local
150 gpu::gles2::GLES2Interface* gl = context_provider_->ContextGL(); local
[all...]
/external/chromium_org/content/renderer/gpu/
H A Dmailbox_output_surface.cc60 GLES2Interface* gl = context_provider_->ContextGL(); local
69 gl->WaitSyncPointCHROMIUM(current_backing_.sync_point);
74 gl->DeleteTextures(1, &texture.texture_id);
79 gl->GenTextures(1, &current_backing_.texture_id);
81 gl->BindTexture(GL_TEXTURE_2D, current_backing_.texture_id);
82 gl->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
83 gl->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
84 gl->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
85 gl->TexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
86 gl
104 GLES2Interface* gl = context_provider_->ContextGL(); local
138 GLES2Interface* gl = context_provider_->ContextGL(); local
[all...]
/external/chromium_org/third_party/angle/src/common/
H A Dmathutil.cpp14 namespace gl namespace
/external/chromium_org/third_party/angle/src/libEGL/
H A DSurface.h18 namespace gl namespace
66 virtual void setBoundTexture(gl::Texture2D *texture);
67 virtual gl::Texture2D *getBoundTexture() const;
109 gl::Texture2D *mTexture;
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DBuffer.cpp7 // Buffer.cpp: Implements the gl::Buffer class, representing storage of vertex and/or
15 namespace gl namespace
38 gl::Error error = mBuffer->setData(data, size, usage);
53 gl::Error error = mBuffer->setSubData(data, size, offset);
66 gl::Error error = mBuffer->copySubData(source->getImplementation(), sourceOffset, destOffset, size);
H A DBuffer.h7 // Buffer.h: Defines the gl::Buffer class, representing storage of vertex and/or
26 namespace gl namespace
H A DProgram.h7 // Program.h: Defines the gl::Program class. Implements GL program objects
29 namespace gl namespace
H A DResourceManager.h26 namespace gl namespace
H A DShader.h7 // Shader.h: Defines the abstract gl::Shader class and its concrete derived
31 namespace gl namespace
86 const std::vector<gl::PackedVarying> &getVaryings() const;
92 std::vector<gl::PackedVarying> &getVaryings();
H A DUniform.cpp11 namespace gl namespace
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DImage.h18 namespace gl namespace
53 virtual void copy(GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height, gl::Framebuffer *source) = 0;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DProgramD3D.h17 namespace gl namespace
43 bool load(gl::InfoLog &infoLog, gl::BinaryInputStream *stream);
44 bool save(gl::BinaryOutputStream *stream);
46 ShaderExecutable *getPixelExecutableForOutputLayout(gl::InfoLog &infoLog, const std::vector<GLenum> &outputSignature,
47 const std::vector<gl::LinkedVarying> &transformFeedbackLinkedVaryings,
49 ShaderExecutable *getVertexExecutableForInputLayout(gl::InfoLog &infoLog,
50 const gl::VertexFormat inputLayout[gl::MAX_VERTEX_ATTRIBS],
52 const std::vector<gl
[all...]
H A DTextureD3D.h16 namespace gl namespace
51 virtual RenderTarget *getRenderTarget(const gl::ImageIndex &index) = 0;
52 virtual unsigned int getRenderTargetSerial(const gl::ImageIndex &index) = 0;
55 void setImage(const gl::PixelUnpackState &unpack, GLenum type, const void *pixels, Image *image);
57 GLenum format, GLenum type, const gl::PixelUnpackState &unpack, const void *pixels, const gl::ImageIndex &index);
61 bool isFastUnpackable(const gl::PixelUnpackState &unpack, GLenum sizedInternalFormat);
62 bool fastUnpackPixels(const gl::PixelUnpackState &unpack, const void *pixels, const gl::Box &destArea,
93 virtual Image *getImage(const gl
[all...]
H A DVertexBuffer.h21 namespace gl namespace
37 virtual gl::Error initialize(unsigned int size, bool dynamicUsage) = 0;
39 virtual gl::Error storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue,
41 virtual gl::Error getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei instances,
45 virtual gl::Error setBufferSize(unsigned int size) = 0;
46 virtual gl::Error discard() = 0;
66 gl
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DInputLayoutCache.h22 namespace gl namespace
41 gl::Error applyVertexBuffers(TranslatedAttribute attributes[gl::MAX_VERTEX_ATTRIBS],
42 gl::ProgramBinary *programBinary);
56 InputLayoutElement elements[gl::MAX_VERTEX_ATTRIBS];
76 ID3D11Buffer *mCurrentBuffers[gl::MAX_VERTEX_ATTRIBS];
77 UINT mCurrentVertexStrides[gl::MAX_VERTEX_ATTRIBS];
78 UINT mCurrentVertexOffsets[gl::MAX_VERTEX_ATTRIBS];
H A DPixelTransfer11.h20 namespace gl namespace
48 bool copyBufferToTexture(const gl::PixelUnpackState &unpack, unsigned int offset, RenderTarget *destRenderTarget,
49 GLenum destinationFormat, GLenum sourcePixelsType, const gl::Box &destArea);
65 static void setBufferToTextureCopyParams(const gl::Box &destArea, const gl::Extents &destSize, GLenum internalFormat,
66 const gl::PixelUnpackState &unpack, unsigned int offset, CopyShaderParams *parametersOut);
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLIRect.h13 #include "gl/GrGLInterface.h"
26 void pushToGLViewport(const GrGLInterface* gl) const {
27 GR_GL_CALL(gl, Viewport(fLeft, fBottom, fWidth, fHeight));
30 void pushToGLScissor(const GrGLInterface* gl) const {
31 GR_GL_CALL(gl, Scissor(fLeft, fBottom, fWidth, fHeight));
34 void setFromGLViewport(const GrGLInterface* gl) { argument
36 GR_GL_GetIntegerv(gl, GR_GL_VIEWPORT, (GrGLint*) this);
/external/chromium_org/ui/android/java/src/org/chromium/ui/gl/
H A DSurfaceTexturePlatformWrapper.java5 package org.chromium.ui.gl;
/external/clang/test/CodeGen/
H A Dsystemz-inline-asm.c4 unsigned long gl; variable

Completed in 281 milliseconds

1234567891011>>