Searched refs:Framebuffer (Results 1 - 25 of 34) sorted by relevance

12

/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.cpp119 static tcu::CubeFace texTargetToFace (Framebuffer::TexTarget target)
123 case Framebuffer::TEXTARGET_CUBE_MAP_NEGATIVE_X: return tcu::CUBEFACE_NEGATIVE_X;
124 case Framebuffer::TEXTARGET_CUBE_MAP_POSITIVE_X: return tcu::CUBEFACE_POSITIVE_X;
125 case Framebuffer::TEXTARGET_CUBE_MAP_NEGATIVE_Y: return tcu::CUBEFACE_NEGATIVE_Y;
126 case Framebuffer::TEXTARGET_CUBE_MAP_POSITIVE_Y: return tcu::CUBEFACE_POSITIVE_Y;
127 case Framebuffer::TEXTARGET_CUBE_MAP_NEGATIVE_Z: return tcu::CUBEFACE_NEGATIVE_Z;
128 case Framebuffer::TEXTARGET_CUBE_MAP_POSITIVE_Z: return tcu::CUBEFACE_POSITIVE_Z;
133 static Framebuffer::TexTarget texLayeredTypeToTarget (Texture::Type type)
137 case Texture::TYPE_2D_ARRAY: return Framebuffer::TEXTARGET_2D_ARRAY;
138 case Texture::TYPE_3D: return Framebuffer
[all...]
H A DsglrReferenceContext.hpp326 class Framebuffer : public NamedObject class in namespace:sglr::rc
380 Framebuffer (deUint32 name);
381 virtual ~Framebuffer (void);
776 void deleteFramebuffer (rc::Framebuffer* framebuffer);
782 void acquireFboAttachmentReference (const rc::Framebuffer::Attachment& attachment);
783 void releaseFboAttachmentReference (const rc::Framebuffer::Attachment& attachment);
784 tcu::PixelBufferAccess getFboAttachment (const rc::Framebuffer& framebuffer, rc::Framebuffer::AttachmentPoint point);
788 rr::MultisamplePixelBufferAccess getDrawColorbuffer (void) { return (m_drawFramebufferBinding) ? (rr::MultisamplePixelBufferAccess::fromSinglesampleAccess(getFboAttachment(*m_drawFramebufferBinding, rc::Framebuffer::ATTACHMENTPOINT_COLOR0))) : (m_defaultColorbuffer); }
789 rr::MultisamplePixelBufferAccess getDrawDepthbuffer (void) { return (m_drawFramebufferBinding) ? (rr::MultisamplePixelBufferAccess::fromSinglesampleAccess(getFboAttachment(*m_drawFramebufferBinding, rc::Framebuffer
[all...]
/external/deqp/framework/platform/ios/
H A DtcuIOSPlatform.hh122 glu::Framebuffer m_framebuffer;
/external/deqp/modules/glshared/
H A DglsFboUtil.hpp312 struct Framebuffer struct in namespace:deqp::gls::FboUtil::config
326 class FboBuilder : public config::Framebuffer
391 void logFramebufferConfig (const config::Framebuffer& cfg, tcu::TestLog& log);
433 ValidStatusCodes validStatusCodes (const config::Framebuffer& cfg) const;
H A DglsFboUtil.cpp474 // GLES2 4.4.5 / GLES3 4.4.4, "Framebuffer attachment completeness"
573 ValidStatusCodes FboVerifier::validStatusCodes (const Framebuffer& fboConfig) const
646 void Framebuffer::attach (glw::GLenum attPoint, const Attachment* att)
654 const Image* Framebuffer::getImage (GLenum type, glw::GLuint imgName) const
668 void Framebuffer::setTexture (glw::GLuint texName, const Texture& texCfg)
673 void Framebuffer::setRbo (glw::GLuint rbName, const Renderbuffer& rbCfg)
732 void logFramebufferConfig (const Framebuffer& cfg, TestLog& log)
734 log << TestLog::Section("Framebuffer", "Framebuffer configuration");
754 ? "Framebuffer ha
[all...]
H A DglsFboCompletenessTests.cpp21 * \brief Framebuffer completeness tests.
40 using glu::Framebuffer;
458 static void logFormatInfo (const config::Framebuffer& fbo, const FormatDB& ctxFormats, const FormatDB& coreFormats, const FormatDB& allFormats, tcu::TestLog& log)
615 glu::Framebuffer fbo (m_ctx.getRenderContext());
655 fail("Framebuffer checked as complete, expected incomplete");
657 fail("Framebuffer checked is incomplete, expected complete");
660 fail("Framebuffer checked as incomplete, but with wrong status");
663 qualityWarning("Framebuffer object could have checked as complete but did not.");
H A DglsScissorTests.cpp483 typedef de::MovePtr<glu::Framebuffer> FramebufferP;
506 m_fbo = FramebufferP(new glu::Framebuffer(gl));
614 const glu::Framebuffer fbo (gl);
H A DglsLifetimeTests.cpp69 using glu::Framebuffer;
275 Framebuffer fbo(getRenderContext());
315 Framebuffer fbo(getRenderContext());
/external/deqp/framework/opengl/
H A DgluObjectWrapper.hpp135 typedef TypedObjectWrapper<OBJECTTYPE_FRAMEBUFFER> Framebuffer; typedef in namespace:glu
/external/deqp/modules/gles2/functional/
H A Des2fFboRenderTest.cpp21 * \brief Framebuffer Object Tests.
234 // Framebuffer config.
347 : TestError("Framebuffer is not complete", getFboIncompleteReasonName(reason), file, line)
353 class Framebuffer class in namespace:deqp::gles2::Functional
356 Framebuffer (sglr::Context& context, const FboConfig& config, int width, int height, deUint32 fbo = 0, deUint32 colorbuffer = 0, deUint32 depthbuffer = 0, deUint32 stencilbuffer = 0);
357 ~Framebuffer (void);
409 Framebuffer::Framebuffer (sglr::Context& context, const FboConfig& config, int width, int height, deUint32 fbo, deUint32 colorbuffer, deUint32 depthbuffer, deUint32 stencilbuffer) function in class:deqp::gles2::Functional::Framebuffer
476 Framebuffer::~Framebuffer (voi
[all...]
H A Des2fFboCompletenessTests.cpp21 * \brief Framebuffer completeness tests.
267 glu::Framebuffer fbo(m_ctx.getRenderContext());
/external/deqp/modules/gles3/functional/
H A Des3fFboRenderTest.cpp21 * \brief Framebuffer Object Tests.
137 class Framebuffer class in namespace:deqp::gles3::Functional
140 Framebuffer (sglr::Context& context, const FboConfig& config, int width, int height, deUint32 fbo = 0, deUint32 colorBuffer = 0, deUint32 depthStencilBuffer = 0);
141 ~Framebuffer (void);
249 Framebuffer::Framebuffer (sglr::Context& context, const FboConfig& config, int width, int height, deUint32 fbo, deUint32 colorBufferName, deUint32 depthStencilBufferName) function in class:deqp::gles3::Functional::Framebuffer
317 Framebuffer::~Framebuffer (void)
324 void Framebuffer::checkCompleteness (void)
333 deUint32 Framebuffer
[all...]
H A Des3fShaderFragDataTests.cpp252 const glu::Framebuffer fbo (renderCtx);
/external/deqp/modules/gles31/functional/
H A Des31fStencilTexturingTests.cpp529 glu::Framebuffer fbo (renderCtx);
586 glu::Framebuffer fbo (renderCtx);
672 glu::Framebuffer fbo (renderCtx);
759 glu::Framebuffer fbo (renderCtx);
817 glu::Framebuffer fbo (renderCtx);
890 glu::Framebuffer fbo (renderCtx);
952 glu::Framebuffer fbo (renderCtx);
H A Des31fFramebufferDefaultStateQueryTests.cpp21 * \brief Framebuffer Default State Query tests.
75 glu::Framebuffer fbo (m_context.getRenderContext());
197 : TestCaseGroup(context, "framebuffer_default", "Framebuffer Default State Query tests")
H A Des31fShaderHelperInvocationTests.cpp215 glu::Framebuffer m_framebuffer;
217 glu::Framebuffer m_resolveFramebuffer;
H A Des31fTessellationGeometryInteractionTests.cpp2436 de::MovePtr<glu::Framebuffer> fbo;
2460 glu::Framebuffer clearFbo(m_context.getRenderContext());
2474 fbo = de::MovePtr<glu::Framebuffer>(new glu::Framebuffer(m_context.getRenderContext()));
2503 glu::Framebuffer readFbo(m_context.getRenderContext());
H A Des31fPrimitiveBoundingBoxTests.cpp561 de::MovePtr<glu::Framebuffer> m_fbo;
675 m_fbo = de::MovePtr<glu::Framebuffer>(new glu::Framebuffer(m_context.getRenderContext()));
3125 de::MovePtr<glu::Framebuffer> m_srcFbo;
3126 de::MovePtr<glu::Framebuffer> m_dstFbo;
3181 m_srcFbo = de::MovePtr<glu::Framebuffer>(new glu::Framebuffer(m_context.getRenderContext()));
3194 m_dstFbo = de::MovePtr<glu::Framebuffer>(new glu::Framebuffer(m_context.getRenderContext()));
/external/mesa3d/docs/
H A DMESA_swap_control.spec62 and the Framebuffer)
H A DMESA_swap_frame_usage.spec98 and the Framebuffer)
/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiObjectManagementTests.cpp1896 struct Framebuffer struct in namespace:vkt
1940 return getSafeObjectCount<Framebuffer>(context, params, DEFAULT_MAX_CONCURRENT_OBJECTS);
2428 CaseDescription<Framebuffer> framebuffer;
2600 static const NamedParameters<Framebuffer> s_framebufferCases[] =
2602 { "framebuffer", Framebuffer::Parameters() }
2638 CASE_DESC(createSingleTest <Framebuffer>, s_framebufferCases),
2667 CASE_DESC(createMultipleUniqueResourcesTest <Framebuffer>, s_framebufferCases),
2696 CASE_DESC(createMultipleSharedResourcesTest <Framebuffer>, s_framebufferCases),
2725 CASE_DESC(createMaxConcurrentTest <Framebuffer>, s_framebufferCases),
2754 CASE_DESC(multithreadedCreatePerThreadDeviceTest <Framebuffer>, s_framebufferCase
[all...]
/external/deqp/modules/egl/
H A DteglImageUtil.cpp59 using glu::Framebuffer;
480 Framebuffer fbo (gl);
H A DteglImageFormatTests.cpp71 using glu::Framebuffer;
457 Framebuffer framebuffer (gl);
584 Framebuffer framebuffer (gl);
701 Framebuffer framebuffer (gl);
799 glu::Framebuffer framebuffer (gl);
/external/mesa3d/docs/OLD/
H A DMESA_packed_depth_stencil.spec188 Framebuffer. It should read " If the <format> is one of RED, GREEN,
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkNullDriver.cpp169 VK_NULL_DEFINE_DEVICE_OBJ(Framebuffer);

Completed in 851 milliseconds

12