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

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
RenderTarget9.cpp 59 GLuint clientVersion = mRenderer->getCurrentClientVersion();
67 if (gl::GetDepthBits(internalFormat, clientVersion) > 0 ||
68 gl::GetStencilBits(internalFormat, clientVersion) > 0)
TextureStorage9.cpp 43 GLuint clientVersion = renderer->getCurrentClientVersion();
47 if (gl::GetDepthBits(internalformat, clientVersion) > 0 ||
48 gl::GetStencilBits(internalformat, clientVersion) > 0)
Image9.cpp 388 GLuint clientVersion = mRenderer->getCurrentClientVersion();
389 GLsizei inputRowPitch = gl::GetRowPitch(mInternalFormat, type, clientVersion, width, unpackAlignment);
418 GLuint clientVersion = mRenderer->getCurrentClientVersion();
419 GLsizei inputRowPitch = gl::GetRowPitch(mInternalFormat, GL_UNSIGNED_BYTE, clientVersion, width, 1);
420 GLsizei inputDepthPitch = gl::GetDepthPitch(mInternalFormat, GL_UNSIGNED_BYTE, clientVersion, width, height, 1);
Renderer9.cpp     [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
PixelTransfer11.cpp 151 int clientVersion = mRenderer->getCurrentClientVersion();
161 GLenum unsizedFormat = gl::GetFormat(destinationFormat, clientVersion);
162 GLenum sourceFormat = gl::GetSizedInternalFormat(unsizedFormat, sourcePixelsType, clientVersion);
164 DXGI_FORMAT srvFormat = gl_d3d11::GetSRVFormat(sourceFormat, clientVersion);
240 int clientVersion = mRenderer->getCurrentClientVersion();
241 GLenum componentType = gl::GetComponentType(internalFormat, clientVersion);
Clear11.cpp 203 GLuint clientVersion = mRenderer->getCurrentClientVersion();
226 GLenum componentType = gl::GetComponentType(internalFormat, clientVersion);
234 GLuint internalRedBits = gl::GetRedBits(internalFormat, clientVersion);
235 GLuint internalGreenBits = gl::GetGreenBits(internalFormat, clientVersion);
236 GLuint internalBlueBits = gl::GetBlueBits(internalFormat, clientVersion);
237 GLuint internalAlphaBits = gl::GetAlphaBits(internalFormat, clientVersion);
269 GLuint actualRedBits = gl::GetRedBits(actualFormat, clientVersion);
270 GLuint actualGreenBits = gl::GetGreenBits(actualFormat, clientVersion);
271 GLuint actualBlueBits = gl::GetBlueBits(actualFormat, clientVersion);
272 GLuint actualAlphaBits = gl::GetAlphaBits(actualFormat, clientVersion);
    [all...]
Image11.cpp 43 void Image11::generateMipmap(GLuint clientVersion, Image11 *dest, Image11 *src)
121 GLuint clientVersion = mRenderer->getCurrentClientVersion();
130 mDXGIFormat = gl_d3d11::GetTexFormat(internalformat, clientVersion);
131 mActualFormat = d3d11_gl::GetInternalFormat(mDXGIFormat, clientVersion);
132 mRenderable = gl_d3d11::GetRTVFormat(internalformat, clientVersion) != DXGI_FORMAT_UNKNOWN;
157 GLuint clientVersion = mRenderer->getCurrentClientVersion();
158 GLsizei inputRowPitch = gl::GetRowPitch(mInternalFormat, type, clientVersion, width, unpackAlignment);
159 GLsizei inputDepthPitch = gl::GetDepthPitch(mInternalFormat, type, clientVersion, width, height, unpackAlignment);
162 LoadImageFunction loadFunction = d3d11::GetImageLoadFunction(mInternalFormat, type, clientVersion);
182 GLuint clientVersion = mRenderer->getCurrentClientVersion()
    [all...]
RenderTarget11.cpp 281 GLuint clientVersion = mRenderer->getCurrentClientVersion();
283 DXGI_FORMAT texFormat = gl_d3d11::GetTexFormat(internalFormat, clientVersion);
284 DXGI_FORMAT srvFormat = gl_d3d11::GetSRVFormat(internalFormat, clientVersion);
285 DXGI_FORMAT rtvFormat = gl_d3d11::GetRTVFormat(internalFormat, clientVersion);
286 DXGI_FORMAT dsvFormat = gl_d3d11::GetDSVFormat(internalFormat, clientVersion);
TextureStorage11.cpp 124 DWORD TextureStorage11::GetTextureBindFlags(GLenum internalFormat, GLuint clientVersion, bool renderTarget)
128 if (gl_d3d11::GetSRVFormat(internalFormat, clientVersion) != DXGI_FORMAT_UNKNOWN)
132 if (gl_d3d11::GetDSVFormat(internalFormat, clientVersion) != DXGI_FORMAT_UNKNOWN)
136 if (gl_d3d11::GetRTVFormat(internalFormat, clientVersion) != DXGI_FORMAT_UNKNOWN && renderTarget)
424 GLuint clientVersion = mRenderer->getCurrentClientVersion();
426 mTextureFormat = gl_d3d11::GetTexFormat(internalformat, clientVersion);
427 mShaderResourceFormat = gl_d3d11::GetSRVFormat(internalformat, clientVersion);
428 mDepthStencilFormat = gl_d3d11::GetDSVFormat(internalformat, clientVersion);
429 mRenderTargetFormat = gl_d3d11::GetRTVFormat(internalformat, clientVersion);
696 GLuint clientVersion = mRenderer->getCurrentClientVersion()
    [all...]
formatutils11.cpp 159 static bool GetD3D11ES3FormatInfo(GLenum internalFormat, GLuint clientVersion, D3D11ES3FormatInfo *outFormatInfo)
    [all...]
Renderer11.cpp     [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/
validationES3.cpp 172 int clientVersion = context->getClientVersion();
180 if (!gl::IsFormatCompressed(actualInternalFormat, clientVersion))
195 !gl::IsValidFormat(format, clientVersion) ||
196 !gl::IsValidType(type, clientVersion))
201 if (!gl::IsValidFormatCombination(actualInternalFormat, format, type, clientVersion))
263 GLenum sizedFormat = gl::IsSizedInternalFormat(actualInternalFormat, clientVersion) ?
265 gl::GetSizedInternalFormat(actualInternalFormat, type, clientVersion);
267 size_t pixelBytes = static_cast<size_t>(gl::GetPixelBytes(sizedFormat, clientVersion));
validationES.cpp 193 GLuint clientVersion = context->getClientVersion();
194 if (!IsFormatCompressed(internalFormat, clientVersion))
199 GLint blockWidth = GetCompressedBlockWidth(internalFormat, clientVersion);
200 GLint blockHeight = GetCompressedBlockHeight(internalFormat, clientVersion);
473 GLuint clientVersion = context->getClientVersion();
483 GLenum readComponentType = gl::GetComponentType(readInternalFormat, clientVersion);
490 GLenum drawComponentType = gl::GetComponentType(drawInternalFormat, clientVersion);
629 bool ValidateGetVertexAttribParameters(GLenum pname, int clientVersion)
649 return ((clientVersion >= 3) ? true : gl::error(GL_INVALID_ENUM, false));
853 int clientVersion = context->getClientVersion()
    [all...]
Texture.cpp 552 GLuint clientVersion = mRenderer->getCurrentClientVersion();
553 GLenum sizedInternalFormat = IsSizedInternalFormat(internalFormat, clientVersion) ? internalFormat
554 : GetSizedInternalFormat(format, type, clientVersion);
671 GLuint clientVersion = mRenderer->getCurrentClientVersion();
672 GLenum sizedInternalFormat = IsSizedInternalFormat(format, clientVersion) ? format
673 : GetSizedInternalFormat(format, GL_UNSIGNED_BYTE, clientVersion);
718 GLuint clientVersion = mRenderer->getCurrentClientVersion();
727 gl::GetFormat(getBaseLevelInternalFormat(), clientVersion),
    [all...]
  /external/deqp/modules/egl/
teglQueryContextTests.cpp 63 EGLint clientVersion;
225 info.clientVersion = apis[apiNdx].apiVersion;
405 const EGLint clientVersion = getContextAttrib(display, context, EGL_CONTEXT_CLIENT_VERSION);
407 if (info.clientType == EGL_OPENGL_ES_API && clientVersion != info.clientVersion)
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.2/
ant-1.8.2.jar 

Completed in 1043 milliseconds