HomeSort by relevance Sort by last modified time
    Searched refs:GL_RGB (Results 1 - 25 of 273) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Simple_TextureCubemap/
Simple_TextureCubemap.c 71 glTexImage2D ( GL_TEXTURE_CUBE_MAP_POSITIVE_X, 0, GL_RGB, 1, 1, 0,
72 GL_RGB, GL_UNSIGNED_BYTE, &cubePixels[0] );
75 glTexImage2D ( GL_TEXTURE_CUBE_MAP_NEGATIVE_X, 0, GL_RGB, 1, 1, 0,
76 GL_RGB, GL_UNSIGNED_BYTE, &cubePixels[1] );
79 glTexImage2D ( GL_TEXTURE_CUBE_MAP_POSITIVE_Y, 0, GL_RGB, 1, 1, 0,
80 GL_RGB, GL_UNSIGNED_BYTE, &cubePixels[2] );
83 glTexImage2D ( GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, 0, GL_RGB, 1, 1, 0,
84 GL_RGB, GL_UNSIGNED_BYTE, &cubePixels[3] );
87 glTexImage2D ( GL_TEXTURE_CUBE_MAP_POSITIVE_Z, 0, GL_RGB, 1, 1, 0,
88 GL_RGB, GL_UNSIGNED_BYTE, &cubePixels[4] )
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
formats.c 45 * Base format is one of GL_RED, GL_RG, GL_RGB, GL_RGBA, GL_ALPHA,
130 GL_RGB, /* BaseFormat */
139 GL_RGB, /* BaseFormat */
148 GL_RGB, /* BaseFormat */
157 GL_RGB, /* BaseFormat */
166 GL_RGB, /* BaseFormat */
175 GL_RGB, /* BaseFormat */
184 GL_RGB, /* BaseFormat */
193 GL_RGB, /* BaseFormat */
292 GL_RGB, /* BaseFormat *
    [all...]
glformats.c 196 case GL_RGB:
248 if (format == GL_RGB || format == GL_BGR ||
255 if (format == GL_RGB || format == GL_BGR ||
290 if (format == GL_RGB)
295 if (format == GL_RGB)
490 case GL_RGB:
866 case GL_RGB:
900 base_format == GL_RGB ||
910 base_format == GL_RGB ||
919 if (base_format == GL_RGB ||
    [all...]
texcompress_cpal.c 53 { GL_PALETTE4_RGB8_OES, GL_RGB, GL_UNSIGNED_BYTE, 16, 3 },
55 { GL_PALETTE4_R5_G6_B5_OES, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, 16, 2 },
58 { GL_PALETTE8_RGB8_OES, GL_RGB, GL_UNSIGNED_BYTE, 256, 3 },
60 { GL_PALETTE8_R5_G6_B5_OES, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, 256, 2 },
  /external/mesa3d/src/mesa/main/
formats.c 45 * Base format is one of GL_RED, GL_RG, GL_RGB, GL_RGBA, GL_ALPHA,
130 GL_RGB, /* BaseFormat */
139 GL_RGB, /* BaseFormat */
148 GL_RGB, /* BaseFormat */
157 GL_RGB, /* BaseFormat */
166 GL_RGB, /* BaseFormat */
175 GL_RGB, /* BaseFormat */
184 GL_RGB, /* BaseFormat */
193 GL_RGB, /* BaseFormat */
292 GL_RGB, /* BaseFormat *
    [all...]
glformats.c 196 case GL_RGB:
248 if (format == GL_RGB || format == GL_BGR ||
255 if (format == GL_RGB || format == GL_BGR ||
290 if (format == GL_RGB)
295 if (format == GL_RGB)
490 case GL_RGB:
866 case GL_RGB:
900 base_format == GL_RGB ||
910 base_format == GL_RGB ||
919 if (base_format == GL_RGB ||
    [all...]
texcompress_cpal.c 53 { GL_PALETTE4_RGB8_OES, GL_RGB, GL_UNSIGNED_BYTE, 16, 3 },
55 { GL_PALETTE4_R5_G6_B5_OES, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, 16, 2 },
58 { GL_PALETTE8_RGB8_OES, GL_RGB, GL_UNSIGNED_BYTE, 256, 3 },
60 { GL_PALETTE8_R5_G6_B5_OES, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, 256, 2 },
  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
TextureUtil.java 31 return GL10.GL_RGB;
172 format = GLES20.GL_RGB;
181 format = GLES20.GL_RGB;
185 format = GLES20.GL_RGB;
194 format = GLES20.GL_RGB;
198 format = GLES20.GL_RGB;
  /frameworks/native/opengl/tests/finish/
finish.cpp 83 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB,
84 512, 512, 0, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, texels);
167 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 1, 1, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, &green);
179 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB,
180 1, 1, 0, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, &texel);
215 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 1, 1, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, &green);
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
TextureUtil.java 207 format = GL_RGB;
316 format = GL_RGB;
321 format = GL_RGB;
326 format = GL_RGB;
331 format = GL_RGB;
336 format = GL_RGB;
341 format = GL_RGB;
346 format = GL_RGB;
356 format = GL_RGB;
371 format = GL_RGB;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CompressedTextureActivity.java 95 GLES10.GL_RGB, GLES10.GL_UNSIGNED_SHORT_5_6_5, input);
124 GLES10.GL_RGB, GLES10.GL_UNSIGNED_SHORT_5_6_5, bis);
130 GLES10.GL_RGB, GLES10.GL_UNSIGNED_SHORT_5_6_5, etc1Texture);
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Simple_Texture2D/
Simple_Texture2D.c 64 glTexImage2D ( GL_TEXTURE_2D, 0, GL_RGB, 2, 2, 0, GL_RGB, GL_UNSIGNED_BYTE, pixels );
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_eglimage.c 67 base_format = GL_RGB;
114 internalFormat = GL_RGB;
  /external/mesa3d/src/mesa/state_tracker/
st_cb_eglimage.c 67 base_format = GL_RGB;
114 internalFormat = GL_RGB;
  /frameworks/native/opengl/tests/linetex/
linetex.cpp 94 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 1, 4, 0, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, t16);
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
GLESvalidate.cpp 56 return format == GL_RGB;
68 case GL_RGB:
  /external/chromium_org/gpu/gles2_conform_support/native/
egl_native_x11.cc 27 if (format != GL_RGBA && format != GL_RGB)
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/MipMap2D/
MipMap2D.c 167 glTexImage2D ( GL_TEXTURE_2D, 0, GL_RGB, width, height,
168 0, GL_RGB, GL_UNSIGNED_BYTE, pixels );
183 glTexImage2D( GL_TEXTURE_2D, level, GL_RGB,
184 newWidth, newHeight, 0, GL_RGB,
  /external/chromium_org/third_party/mesa/src/src/glx/
compsize.c 66 case GL_RGB:
  /external/mesa3d/src/glx/
compsize.c 66 case GL_RGB:
  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_utils_unittest.cc 98 kWidth, kHeight, GL_RGB, GL_UNSIGNED_BYTE, 1, &size, &unpadded_row_size,
173 kWidth, kHeight, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, 1, &size,
193 kWidth, kHeight, GL_RGB, GL_UNSIGNED_BYTE, 1, &size, &unpadded_row_size,
199 kWidth, kHeight, GL_RGB, GL_UNSIGNED_BYTE, 2, &size, &unpadded_row_size,
206 kWidth, kHeight, GL_RGB, GL_UNSIGNED_BYTE, 4, &size, &unpadded_row_size,
213 kWidth, kHeight, GL_RGB, GL_UNSIGNED_BYTE, 8, &size, &unpadded_row_size,
227 EXPECT_EQ(4u, GLES2Util::RenderbufferBytesPerPixel(GL_RGB));
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/swrast/
swrast.c 165 fb_format = GL_RGB;
169 fb_format = GL_RGB;
356 rb->InternalFormat = GL_RGB;
357 rb->_BaseFormat = GL_RGB;
362 rb->InternalFormat = GL_RGB;
363 rb->_BaseFormat = GL_RGB;
368 rb->InternalFormat = GL_RGB;
369 rb->_BaseFormat = GL_RGB;
640 if (internalFormat == GL_RGB)
  /external/mesa3d/src/mesa/drivers/dri/swrast/
swrast.c 165 fb_format = GL_RGB;
169 fb_format = GL_RGB;
356 rb->InternalFormat = GL_RGB;
357 rb->_BaseFormat = GL_RGB;
362 rb->InternalFormat = GL_RGB;
363 rb->_BaseFormat = GL_RGB;
368 rb->InternalFormat = GL_RGB;
369 rb->_BaseFormat = GL_RGB;
640 if (internalFormat == GL_RGB)
  /external/chromium_org/third_party/angle_dx11/samples/angle/Simple_Instancing/
Simple_Instancing.c 74 glTexImage2D ( GL_TEXTURE_2D, 0, GL_RGB, 2, 2, 0, GL_RGB, GL_UNSIGNED_BYTE, pixels );
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/MultiTexture/
MultiTexture.c 58 glTexImage2D ( GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_RGB, GL_UNSIGNED_BYTE, buffer );

Completed in 1829 milliseconds

1 2 3 4 5 6 7 8 91011