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

1 2

  /external/chromium_org/third_party/angle/src/libGLESv2/
formatutils.h 48 bool IsValidFormat(GLenum format, GLuint clientVersion);
49 bool IsValidType(GLenum type, GLuint clientVersion);
51 bool IsValidFormatCombination(GLenum internalFormat, GLenum format, GLenum type, GLuint clientVersion);
52 bool IsValidCopyTexImageCombination(GLenum textureInternalFormat, GLenum frameBufferInternalFormat, GLuint readBufferHandle, GLuint clientVersion);
54 bool IsSizedInternalFormat(GLenum internalFormat, GLuint clientVersion);
55 GLenum GetSizedInternalFormat(GLenum format, GLenum type, GLuint clientVersion);
57 GLuint GetPixelBytes(GLenum internalFormat, GLuint clientVersion);
58 GLuint GetAlphaBits(GLenum internalFormat, GLuint clientVersion);
59 GLuint GetRedBits(GLenum internalFormat, GLuint clientVersion);
60 GLuint GetGreenBits(GLenum internalFormat, GLuint clientVersion);
    [all...]
formatutils.cpp 186 static const FormatMap &GetFormatMap(GLuint clientVersion)
188 if (clientVersion == 2)
193 else if (clientVersion == 3)
    [all...]
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...]
main.h 56 gl::Context *glCreateContext(int clientVersion, const gl::Context *shareContext, rx::Renderer *renderer, bool notifyResets, bool robustAccess);
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...]
Framebuffer.cpp 461 GLuint clientVersion = mRenderer->getCurrentClientVersion();
495 if (gl::GetDepthBits(internalformat, clientVersion) > 0 ||
496 gl::GetStencilBits(internalformat, clientVersion) > 0)
524 if (clientVersion < 3)
526 if (gl::GetPixelBytes(colorbuffer->getInternalFormat(), clientVersion) != colorbufferSize)
546 colorbufferSize = gl::GetPixelBytes(colorbuffer->getInternalFormat(), clientVersion);
586 if (gl::GetDepthBits(internalformat, clientVersion) == 0)
646 if (gl::GetStencilBits(internalformat, clientVersion) == 0)
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));
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
formatutils11.h 26 LoadImageFunction GetImageLoadFunction(GLenum internalFormat, GLenum type, GLuint clientVersion);
50 DXGI_FORMAT GetTexFormat(GLenum internalFormat, GLuint clientVersion);
51 DXGI_FORMAT GetSRVFormat(GLenum internalFormat, GLuint clientVersion);
52 DXGI_FORMAT GetRTVFormat(GLenum internalFormat, GLuint clientVersion);
53 DXGI_FORMAT GetDSVFormat(GLenum internalFormat, GLuint clientVersion);
54 DXGI_FORMAT GetRenderableFormat(GLenum internalFormat, GLuint clientVersion);
73 GLenum GetInternalFormat(DXGI_FORMAT format, GLuint clientVersion);
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...]
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...]
formatutils11.cpp 159 static bool GetD3D11ES3FormatInfo(GLenum internalFormat, GLuint clientVersion, D3D11ES3FormatInfo *outFormatInfo)
    [all...]
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);
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...]
Image11.h 37 static void generateMipmap(GLuint clientVersion, Image11 *dest, Image11 *src);
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);
renderer11_utils.cpp 222 void GenerateInitialTextureData(GLint internalFormat, GLuint clientVersion, GLuint width, GLuint height, GLuint depth,
227 DXGI_FORMAT dxgiFormat = gl_d3d11::GetTexFormat(internalFormat, clientVersion);
  /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)
formatutils9.h 38 ColorCopyFunction GetFastCopyFunction(D3DFORMAT sourceFormat, GLenum destFormat, GLenum destType, GLuint clientVersion);
71 bool IsFormatChannelEquivalent(D3DFORMAT d3dformat, GLenum format, GLuint clientVersion);
TextureStorage9.cpp 43 GLuint clientVersion = renderer->getCurrentClientVersion();
47 if (gl::GetDepthBits(internalformat, clientVersion) > 0 ||
48 gl::GetStencilBits(internalformat, clientVersion) > 0)
  /external/chromium_org/third_party/angle/src/common/
utilities.h 41 bool IsInternalTextureTarget(GLenum target, GLuint clientVersion);
utilities.cpp 398 bool IsInternalTextureTarget(GLenum target, GLuint clientVersion)
400 if (clientVersion == 2)
404 else if (clientVersion == 3)
  /external/chromium_org/third_party/angle/src/libEGL/
Display.h 43 EGLContext createContext(EGLConfig configHandle, EGLint clientVersion, const gl::Context *shareContext, bool notifyResets, bool robustAccess);
  /external/chromium_org/third_party/angle/tests/angle_tests/
ANGLETest.h 62 void setClientVersion(int clientVersion);
ANGLETest.cpp 149 void ANGLETest::setClientVersion(int clientVersion)
151 mClientVersion = clientVersion;
  /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)

Completed in 1488 milliseconds

1 2