/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/gl/ |
D | FunctionsGL.cpp | 98 FunctionsGL::FunctionsGL() : version(), standard(), extensions() {} in FunctionsGL() function in rx::FunctionsGL 100 FunctionsGL::~FunctionsGL() {} in ~FunctionsGL() 102 void FunctionsGL::initialize(const egl::AttributeMap &displayAttributes) in initialize() 199 bool FunctionsGL::isAtLeastGL(const gl::Version &glVersion) const in isAtLeastGL() 204 bool FunctionsGL::isAtMostGL(const gl::Version &glVersion) const in isAtMostGL() 209 bool FunctionsGL::isAtLeastGLES(const gl::Version &glesVersion) const in isAtLeastGLES() 214 bool FunctionsGL::isAtMostGLES(const gl::Version &glesVersion) const in isAtMostGLES() 219 bool FunctionsGL::hasExtension(const std::string &ext) const in hasExtension() 224 bool FunctionsGL::hasGLExtension(const std::string &ext) const in hasGLExtension() 229 bool FunctionsGL::hasGLESExtension(const std::string &ext) const in hasGLESExtension() [all …]
|
D | renderergl_utils.h | 42 class FunctionsGL; variable 64 VendorID GetVendorID(const FunctionsGL *functions); 67 const FunctionsGL *GetFunctionsGL(const gl::Context *context); 99 void GenerateCaps(const FunctionsGL *functions, 107 void InitializeFeatures(const FunctionsGL *functions, angle::FeaturesGL *features); 108 void InitializeFrontendFeatures(const FunctionsGL *functions, angle::FrontendFeatures *features); 113 bool SupportsCompute(const FunctionsGL *functions); 114 bool SupportsFenceSync(const FunctionsGL *functions); 115 bool SupportsOcclusionQueries(const FunctionsGL *functions); 116 bool SupportsNativeRendering(const FunctionsGL *functions, [all …]
|
D | formatutilsgl.h | 70 TexImageFormat GetTexImageFormat(const FunctionsGL *functions, 81 TexSubImageFormat GetTexSubImageFormat(const FunctionsGL *functions, 90 CompressedTexImageFormat GetCompressedTexImageFormat(const FunctionsGL *functions, 98 CompressedTexSubImageFormat GetCompressedSubTexImageFormat(const FunctionsGL *functions, 106 CopyTexImageImageFormat GetCopyTexImageImageFormat(const FunctionsGL *functions, 115 TexStorageFormat GetTexStorageFormat(const FunctionsGL *functions, 123 RenderbufferFormat GetRenderbufferFormat(const FunctionsGL *functions, 132 ReadPixelsFormat GetReadPixelsFormat(const FunctionsGL *functions,
|
D | FenceNVGL.h | 16 class FunctionsGL; variable 22 explicit FenceNVGL(const FunctionsGL *functions); 30 static bool Supported(const FunctionsGL *functions); 35 const FunctionsGL *mFunctions; 42 explicit FenceNVSyncGL(const FunctionsGL *functions); 50 static bool Supported(const FunctionsGL *functions); 55 const FunctionsGL *mFunctions;
|
D | QueryGL.h | 19 class FunctionsGL; variable 41 StandardQueryGL(gl::QueryType type, const FunctionsGL *functions, StateManagerGL *stateManager); 64 const FunctionsGL *mFunctions; 76 SyncQueryGL(gl::QueryType type, const FunctionsGL *functions); 79 static bool IsSupported(const FunctionsGL *functions); 99 const FunctionsGL *mFunctions;
|
D | QueryGL.cpp | 57 const FunctionsGL *functions, in StandardQueryGL() 231 SyncProviderGLSync(const FunctionsGL *functions) : mFunctions(functions), mSync(nullptr) in SyncProviderGLSync() 256 const FunctionsGL *mFunctions; 263 SyncProviderGLQuery(const FunctionsGL *functions) : mFunctions(functions), mQuery(0) {} in SyncProviderGLQuery() 297 const FunctionsGL *mFunctions; 301 SyncQueryGL::SyncQueryGL(gl::QueryType type, const FunctionsGL *functions) in SyncQueryGL() 310 bool SyncQueryGL::IsSupported(const FunctionsGL *functions) in IsSupported()
|
D | FenceNVGL.cpp | 19 FenceNVGL::FenceNVGL(const FunctionsGL *functions) : FenceNVImpl(), mFunctions(functions) in FenceNVGL() 51 bool FenceNVGL::Supported(const FunctionsGL *functions) in Supported() 56 FenceNVSyncGL::FenceNVSyncGL(const FunctionsGL *functions) in FenceNVSyncGL() 100 bool FenceNVSyncGL::Supported(const FunctionsGL *functions) in Supported()
|
D | ProgramPipelineGL.h | 18 class FunctionsGL; variable 23 ProgramPipelineGL(const gl::ProgramPipelineState &data, const FunctionsGL *functions); 29 const FunctionsGL *mFunctions;
|
D | SamplerGL.h | 18 class FunctionsGL; variable 25 const FunctionsGL *functions, 34 const FunctionsGL *mFunctions;
|
D | renderergl_utils.cpp | 43 VendorID GetVendorID(const FunctionsGL *functions) in GetVendorID() 73 uint32_t GetDeviceID(const FunctionsGL *functions) in GetDeviceID() 94 bool IsMesa(const FunctionsGL *functions, std::array<int, 3> *version) in IsMesa() 121 static bool MeetsRequirements(const FunctionsGL *functions, in MeetsRequirements() 168 static bool CheckSizedInternalFormatTextureRenderability(const FunctionsGL *functions, in CheckSizedInternalFormatTextureRenderability() 217 static bool CheckInternalFormatRenderbufferRenderability(const FunctionsGL *functions, in CheckInternalFormatRenderbufferRenderability() 271 static gl::TextureCaps GenerateTextureFormatCaps(const FunctionsGL *functions, in GenerateTextureFormatCaps() 388 static GLint QuerySingleGLInt(const FunctionsGL *functions, GLenum name) in QuerySingleGLInt() 395 static GLint QuerySingleIndexGLInt(const FunctionsGL *functions, GLenum name, GLuint index) in QuerySingleIndexGLInt() 402 static GLint QueryGLIntRange(const FunctionsGL *functions, GLenum name, size_t index) in QueryGLIntRange() [all …]
|
D | SyncGL.h | 16 class FunctionsGL; variable 21 explicit SyncGL(const FunctionsGL *functions); 37 const FunctionsGL *mFunctions;
|
D | FunctionsGL.h | 32 class FunctionsGL : public DispatchTableGL 35 FunctionsGL(); 36 ~FunctionsGL() override;
|
D | SemaphoreGL.cpp | 58 const FunctionsGL *functions = GetFunctionsGL(context); in onDestroy() 65 const FunctionsGL *functions = GetFunctionsGL(context); in importFd() 82 const FunctionsGL *functions = GetFunctionsGL(context); in wait() 103 const FunctionsGL *functions = GetFunctionsGL(context); in signal()
|
D | RendererGL.h | 50 class FunctionsGL; variable 81 RendererGL(std::unique_ptr<FunctionsGL> functions, 107 const FunctionsGL *getFunctions() const { return mFunctions.get(); } in getFunctions() 153 std::unique_ptr<FunctionsGL> mFunctions;
|
D | TransformFeedbackGL.h | 17 class FunctionsGL; variable 24 const FunctionsGL *functions, 45 const FunctionsGL *mFunctions;
|
D | ContextGL.cpp | 57 const FunctionsGL *functions = getFunctions(); in createShader() 70 const FunctionsGL *funcs = getFunctions(); in createFramebuffer() 80 const FunctionsGL *functions = getFunctions(); in createTexture() 92 const FunctionsGL *functions = getFunctions(); in createRenderbuffer() 126 const FunctionsGL *functions = getFunctions(); in createFenceNV() 160 const FunctionsGL *functions = getFunctions(); in createMemoryObject() 170 const FunctionsGL *functions = getFunctions(); in createSemaphore() 317 const FunctionsGL *functions = getFunctions(); in updateAttributesForBaseInstance() 359 const FunctionsGL *functions = getFunctions(); in resetUpdatedAttributes() 402 const FunctionsGL *functions = getFunctions(); in drawArraysInstancedBaseInstance() [all …]
|
D | SamplerGL.cpp | 18 inline void SetSamplerParameter(const rx::FunctionsGL *functions, in SetSamplerParameter() 26 inline void SetSamplerParameter(const rx::FunctionsGL *functions, in SetSamplerParameter() 49 static inline void SyncSamplerStateMember(const rx::FunctionsGL *functions, in SyncSamplerStateMember() 69 const FunctionsGL *functions, in SamplerGL()
|
D | MemoryObjectGL.cpp | 28 const FunctionsGL *functions = GetFunctionsGL(context); in onDestroy() 35 const FunctionsGL *functions = GetFunctionsGL(context); in setDedicatedMemory() 48 const FunctionsGL *functions = GetFunctionsGL(context); in importFd()
|
D | ClearMultiviewGL.h | 24 class FunctionsGL; variable 41 ClearMultiviewGL(const FunctionsGL *functions, StateManagerGL *stateManager); 79 const FunctionsGL *mFunctions;
|
D | FramebufferGL.cpp | 76 void BindFramebufferAttachment(const FunctionsGL *functions, in BindFramebufferAttachment() 430 const FunctionsGL *functions = GetFunctionsGL(context); in invalidate() 464 const FunctionsGL *functions = GetFunctionsGL(context); in invalidateSub() 482 const FunctionsGL *functions = GetFunctionsGL(context); in clear() 508 const FunctionsGL *functions = GetFunctionsGL(context); in clearBufferfv() 535 const FunctionsGL *functions = GetFunctionsGL(context); in clearBufferuiv() 562 const FunctionsGL *functions = GetFunctionsGL(context); in clearBufferiv() 590 const FunctionsGL *functions = GetFunctionsGL(context); in clearBufferfi() 619 const FunctionsGL *functions = GetFunctionsGL(context); in readPixels() 709 const FunctionsGL *functions = GetFunctionsGL(context); in blit() [all …]
|
D | BufferGL.h | 18 class FunctionsGL; variable 25 const FunctionsGL *functions, 71 const FunctionsGL *mFunctions;
|
D | formatutilsgl.cpp | 464 static GLenum GetNativeInternalFormat(const FunctionsGL *functions, in GetNativeInternalFormat() 588 static GLenum GetNativeFormat(const FunctionsGL *functions, in GetNativeFormat() 653 static GLenum GetNativeCompressedFormat(const FunctionsGL *functions, in GetNativeCompressedFormat() 691 static GLenum GetNativeType(const FunctionsGL *functions, in GetNativeType() 734 static GLenum GetNativeReadType(const FunctionsGL *functions, in GetNativeReadType() 752 static GLenum GetNativeReadFormat(const FunctionsGL *functions, in GetNativeReadFormat() 768 TexImageFormat GetTexImageFormat(const FunctionsGL *functions, in GetTexImageFormat() 782 TexSubImageFormat GetTexSubImageFormat(const FunctionsGL *functions, in GetTexSubImageFormat() 793 CompressedTexImageFormat GetCompressedTexImageFormat(const FunctionsGL *functions, in GetCompressedTexImageFormat() 802 CompressedTexSubImageFormat GetCompressedSubTexImageFormat(const FunctionsGL *functions, in GetCompressedSubTexImageFormat() [all …]
|
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/gl/egl/gbm/ |
D | DisplayGbm.cpp | 120 const FunctionsGL *gl = mDisplay->mRenderer->getFunctions(); in ~Buffer() 147 const FunctionsGL *gl = mDisplay->mRenderer->getFunctions(); in reset() 210 const FunctionsGL *gl = mDisplay->mRenderer->getFunctions(); in resize() 242 const FunctionsGL *gl = mDisplay->mRenderer->getFunctions(); in bindTexImage() 250 const FunctionsGL *gl = mDisplay->mRenderer->getFunctions(); in getTexture() 287 const FunctionsGL *functions = GetFunctionsGL(context); in createGLFB() 332 const FunctionsGL *gl = mDisplay->mRenderer->getFunctions(); in createRenderbuffers() 529 std::unique_ptr<FunctionsGL> functionsGL(mEGL->makeFunctionsGL()); in initialize() 615 const FunctionsGL *gl = mRenderer->getFunctions(); in makeShader() 635 const FunctionsGL *gl = mRenderer->getFunctions(); in drawWithTexture() [all …]
|
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/gl/wgl/ |
D | DXGISwapChainWindowSurfaceWGL.h | 20 class FunctionsGL; variable 34 const FunctionsGL *functionsGL, 75 const FunctionsGL *mFunctionsGL;
|
D | D3DTextureSurfaceWGL.h | 19 class FunctionsGL; variable 34 const FunctionsGL *functionsGL, 80 const FunctionsGL *mFunctionsGL;
|