Home
last modified time | relevance | path

Searched refs:DeviceGLES (Results 1 - 23 of 23) sorted by relevance

/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Ddevice_gles.cpp425 static constexpr DeviceGLES::ImageFormat IMAGE_FORMATS_EXT_SRGB_R8[] = {
433 static constexpr DeviceGLES::ImageFormat IMAGE_FORMATS_EXT_SRGB_RG8[] = {
441 static constexpr DeviceGLES::ImageFormat IMAGE_FORMATS_EXT_SRGB[] = {
455 static constexpr DeviceGLES::ImageFormat IMAGE_FORMATS_EXT_BGRA[] = {
462 static constexpr DeviceGLES::ImageFormat IMAGE_FORMATS_EXT_NORM16[] = {
484 static constexpr DeviceGLES::ImageFormat IMAGE_FORMATS_EXT_S3TC[] = {
498 static constexpr DeviceGLES::ImageFormat IMAGE_FORMATS_EXT_BPTC[] = {
512 static constexpr DeviceGLES::ImageFormat IMAGE_FORMATS_EXT_RGTC[] = {
524 static constexpr DeviceGLES::ImageFormat IMAGE_FORMATS_FALLBACK[] = {
559 static constexpr DeviceGLES
1059 DeviceGLES::DeviceGLES(RenderContext& renderContext, DeviceCreateInfo const& createInfo) DeviceGLES() function in DeviceGLES
[all...]
H A Dgpu_image_gles.h28 class DeviceGLES;
62 static GpuImagePlatformDataGL GetPlatformData(const DeviceGLES& device, BASE_NS::Format format);
67 DeviceGLES& device_;
H A Dpipeline_state_object_gles.h28 class DeviceGLES;
64 DeviceGLES& device_;
82 DeviceGLES& device_;
H A Dgpu_semaphore_gles.cpp25 GpuSemaphoreGles::GpuSemaphoreGles(Device& device) : device_((DeviceGLES&)device) in GpuSemaphoreGles()
31 : device_((DeviceGLES&)device), ownsResources_(false) in GpuSemaphoreGles()
H A Dgpu_semaphore_gles.h27 class DeviceGLES;
43 DeviceGLES& device_;
H A Dgpu_sampler_gles.h27 class DeviceGLES;
43 DeviceGLES& device_;
H A Dgpu_buffer_gles.h29 class DeviceGLES;
53 DeviceGLES& device_;
H A Dnode_context_pool_manager_gles.h28 class DeviceGLES;
68 DeviceGLES& device_;
H A Dswapchain_gles.h30 class DeviceGLES;
70 DeviceGLES& device_;
H A Dgpu_program_gles.h30 class DeviceGLES;
74 DeviceGLES& device_;
106 DeviceGLES& device_;
H A Dgpu_image_gles.cpp46 GpuImagePlatformDataGL ConvertFormat(const DeviceGLES::ImageFormat& fmt) in ConvertFormat()
103 void GenerateImageStorage(DeviceGLES& device, const GpuImageDesc& desc, GpuImagePlatformDataGL& plat) in GenerateImageStorage()
160 GpuImagePlatformDataGL GpuImageGLES::GetPlatformData(const DeviceGLES& device, Format format) in GetPlatformData()
167 : GpuImage(), device_((DeviceGLES&)device), desc_(desc) in GpuImageGLES()
228 : GpuImage(), device_((DeviceGLES&)device), plat_((const GpuImagePlatformDataGL&)platformData), desc_(desc), in GpuImageGLES()
H A Dgpu_query_gles.cpp29 PLUGIN_ASSERT(static_cast<DeviceGLES&>(device).IsActive()); in GpuQueryGLES()
H A Ddevice_gles.h74 class DeviceGLES final : public Device {
92 DeviceGLES(RenderContext& renderContext, DeviceCreateInfo const& createInfo);
93 ~DeviceGLES() override;
422 explicit LowLevelDeviceGLES(DeviceGLES& deviceGLES);
434 DeviceGLES& deviceGLES_;
H A Dswapchain_gles.cpp147 GlesImplementation::SurfaceInfo ExtractInfo(DeviceGLES& device, const uint64_t surfaceHandle) noexcept
214 DeviceGLES& device, uint32_t count, GLenum colorf, uint32_t sampleCount, SwapchainPlatformDataGL& plat) in GenerateTextures()
246 void GenerateFBO(DeviceGLES& device, SwapchainPlatformDataGL& plat, bool msaa) in GenerateFBO()
272 : device_((DeviceGLES&)device), flags_(swapchainCreateInfo.swapchainFlags) in SwapchainGLES()
H A Dgpu_sampler_gles.cpp26 GpuSamplerGLES::GpuSamplerGLES(Device& device, const GpuSamplerDesc& desc) : device_((DeviceGLES&)device), desc_(desc) in GpuSamplerGLES()
H A Dshader_module_gles.h28 class DeviceGLES;
H A Drender_backend_gles.h40 class DeviceGLES;
162 DeviceGLES& device_;
H A Dpipeline_state_object_gles.cpp157 : GraphicsPipelineStateObject(), device_((DeviceGLES&)device) in GraphicsPipelineStateObjectGLES()
253 : ComputePipelineStateObject(), device_((DeviceGLES&)device) in ComputePipelineStateObjectGLES()
H A Dnode_context_pool_manager_gles.cpp240 void DeleteFbos(DeviceGLES& device, LowlevelFramebufferGL& ref) in DeleteFbos()
413 uint32_t GenerateSubPassFBO(DeviceGLES& device, LowlevelFramebufferGL& framebuffer, const RenderPassSubpassDesc& sb, in GenerateSubPassFBO()
486 ResolvePair GenerateResolveFBO(DeviceGLES& device, LowlevelFramebufferGL& framebuffer, const RenderPassSubpassDesc& sb, in GenerateResolveFBO()
544 LowlevelFramebufferGL::SubPassPair ProcessSubPass(DeviceGLES& device, LowlevelFramebufferGL& framebuffer, in ProcessSubPass()
676 : NodeContextPoolManager(), device_ { (DeviceGLES&)device }, gpuResourceMgr_ { gpuResourceManager } in NodeContextPoolManagerGLES()
H A Dgpu_buffer_gles.cpp74 : device_((DeviceGLES&)device), plat_({ {}, 0u, 0u, desc.byteSize, 0u, desc.byteSize }), desc_(desc), in GpuBufferGLES()
H A Dgpu_program_gles.cpp529 GpuShaderProgramGLES::GpuShaderProgramGLES(Device& device) : GpuShaderProgram(), device_((DeviceGLES&)device) {}
540 : GpuShaderProgram(), device_((DeviceGLES&)device)
698 GpuComputeProgramGLES::GpuComputeProgramGLES(Device& device) : GpuComputeProgram(), device_((DeviceGLES&)device) {} in GpuComputeProgramGLES()
701 : GpuComputeProgram(), device_((DeviceGLES&)device) in GpuComputeProgramGLES()
H A Drender_backend_gles.cpp402 void BlitArray(DeviceGLES& device_, const BlitData& bd) in BlitArray()
433 void Blit2D(DeviceGLES& device_, const BlitData& bd) in Blit2D()
457 void Blit3D(DeviceGLES& device_, const BlitData& bd) in Blit3D()
487 void BlitCube(DeviceGLES& device_, const BlitData& bd) in BlitCube()
521 BlitData SetupBlit(DeviceGLES& device_, const BufferImageCopy& bufferImageCopy, GpuBufferGLES& srcGpuBuffer, in SetupBlit()
572 void FinishBlit(DeviceGLES& device_, const GpuBufferGLES& srcGpuBuffer) in FinishBlit()
701 : RenderBackend(), device_(static_cast<DeviceGLES&>(device)), gpuResourceMgr_(gpuResourceManager) in RenderBackendGLES()
/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/generic/
H A Dplatform_device_gles.cpp22 BASE_NS::unique_ptr<GpuImage> DeviceGLES::CreateGpuImageView( in CreateGpuImageView()

Completed in 24 milliseconds