HomeSort by relevance Sort by last modified time
    Searched defs:glType (Results 1 - 11 of 11) sorted by null

  /frameworks/rs/driver/
rsdAllocation.h 55 GLenum glType;
62 int glType;
  /device/generic/goldfish-opengl/system/OpenglSystemCommon/
gralloc_cb.h 43 glType(p_glType),
96 int glType; // OpenGL type enum used when uploading to host
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
FrameBuffer.java 63 int glType = Pixmap.Format.toGlType(format);
64 GLOnlyTextureData data = new GLOnlyTextureData(width, height, 0, glFormat, glFormat, glType);
FrameBufferCubemap.java 94 int glType = Pixmap.Format.toGlType(format);
95 GLOnlyTextureData data = new GLOnlyTextureData(width, height, 0, glFormat, glFormat, glType);
KTXTextureData.java 38 private int glType;
113 glType = compressedData.getInt();
163 if (glType == 0 || glFormat == 0) {
164 if (glType + glFormat != 0) throw new GdxRuntimeException("either both or none of glType, glFormat must be zero");
244 // Gdx.gl.glTexImage1D(target + face, level, glInternalFormat, pixelWidth, 0, glFormat, glType, data);
265 Gdx.gl.glTexImage2D(target + face, level, glInternalFormat, pixelWidth, pixelHeight, 0, glFormat, glType, data);
273 // glType, data);
ShapeRenderer.java 84 private final int glType;
86 ShapeType (int glType) {
87 this.glType = glType;
91 return glType;
    [all...]
  /external/deqp/modules/gles2/functional/
es2fReadPixelsTests.cpp 66 void getFormatInfo (tcu::TextureFormat& format, GLint& glFormat, GLint& glType, int& pixelSize);
144 void ReadPixelsTest::getFormatInfo (tcu::TextureFormat& format, GLint& glFormat, GLint& glType, int& pixelSize)
149 GLU_CHECK_CALL(glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_TYPE, &glType));
153 if (glu::getTypeName(glType) == DE_NULL)
154 TCU_THROW(NotSupportedError, ("Unsupported GL_IMPLEMENTATION_COLOR_READ_TYPE: " + de::toString(tcu::Format::Hex<4>(glType))).c_str());
156 format = glu::mapGLTransferFormat(glFormat, glType);
164 glType = GL_UNSIGNED_BYTE;
179 GLint glType;
181 getFormatInfo(format, glFormat, glType, pixelSize);
182 m_testCtx.getLog() << tcu::TestLog::Message << "Format: " << glu::getTextureFormatStr(glFormat) << ", Type: " << glu::getTypeStr(glType) << tcu::TestLog::EndMessage
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderStateQueryTests.cpp 60 glw::GLenum glType;
109 std::string(glu::getShaderVarTypeStr(samplerTypes[typeNdx].glType).toString()),
110 "Uniform type " + glu::getShaderVarTypeStr(samplerTypes[typeNdx].glType).toString());
123 m_testCtx.getLog() << tcu::TestLog::Message << "Building program with uniform sampler of type " << glu::getShaderVarTypeStr(samplerTypes[typeNdx].glType) << tcu::TestLog::EndMessage;
147 if (type != (glw::GLint)samplerTypes[typeNdx].glType)
150 buf << "Invalid type, expected " << samplerTypes[typeNdx].glType << ", got " << type;
es31fCopyImageTests.cpp 561 const deUint32 glType = getTypeForInternalFormat(format);
567 gl.texImage2D(glTarget, level, format, (glw::GLsizei)size.x(), (glw::GLsizei)size.y(), 0, glFormat, glType, data);
572 gl.texImage3D(glTarget, level, format, (glw::GLsizei)size.x(), (glw::GLsizei)size.y(), (glw::GLsizei)size.z(), 0, glFormat, glType, data);
    [all...]
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/ktx/
KTXProcessor.java 275 int glType, glTypeSize, glFormat, glInternalFormat, glBaseInternalFormat;
277 glType = glFormat = 0;
282 glType = images[0][0].pixmap.getGLType();
309 out.writeInt(glType);
  /device/generic/goldfish-opengl/system/gralloc/
gralloc.cpp 212 GLenum glType = 0;
222 glType = GL_UNSIGNED_BYTE;
227 glType = GL_UNSIGNED_BYTE;
232 glType = GL_UNSIGNED_SHORT_5_6_5;
248 glType = GL_UNSIGNED_SHORT;
259 glType = GL_UNSIGNED_BYTE;
274 glType = GL_UNSIGNED_BYTE;
284 glType = GL_UNSIGNED_BYTE;
333 glFormat, glType);
893 0, 0, cb->width, cb->height, cb->glFormat, cb->glType, rgb_addr)
    [all...]

Completed in 664 milliseconds