HomeSort by relevance Sort by last modified time
    Searched refs:grContext (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/skia/tests/
GrDrawTargetTest.cpp 11 #include "GrContext.h"
27 GrContext* grContext = factory->get(glType);
28 if (NULL == grContext) {
32 test_print(reporter, grContext->getGpu()->caps());
GpuDrawPathTest.cpp 10 #include "GrContext.h"
50 GrContext* grContext = factory->get(glType);
51 if (NULL == grContext) {
59 SkAutoTUnref<SkSurface> surface(SkSurface::NewRenderTarget(grContext, info,
GpuColorFilterTest.cpp 11 #include "GrContext.h"
35 static void test_getConstantColorComponents(skiatest::Reporter* reporter, GrContext* grContext) {
101 SkAutoTUnref<GrFragmentProcessor> effect(cf->asFragmentProcessor(grContext));
115 GrContext* grContext = factory->get(glType);
116 if (NULL == grContext) {
120 test_getConstantColorComponents(reporter, grContext);
BlurTest.cpp 282 GrContext* grContext = factory->get(GrContextFactory::kNative_GLContextType);
283 if (NULL == grContext) {
294 SkAutoTUnref<GrTexture> texture(grContext->createUncachedTexture(desc, NULL, 0));
295 SkAutoTUnref<SkGpuDevice> device(SkNEW_ARGS(SkGpuDevice, (grContext, texture.get())));
  /external/skia/tests/
GrDrawTargetTest.cpp 11 #include "GrContext.h"
27 GrContext* grContext = factory->get(glType);
28 if (NULL == grContext) {
32 test_print(reporter, grContext->getGpu()->caps());
GpuDrawPathTest.cpp 10 #include "GrContext.h"
50 GrContext* grContext = factory->get(glType);
51 if (NULL == grContext) {
66 SkAutoTUnref<GrTexture> texture(grContext->createUncachedTexture(desc, NULL, 0));
67 SkAutoTUnref<SkGpuDevice> device(SkNEW_ARGS(SkGpuDevice, (grContext, texture.get())));
GpuColorFilterTest.cpp 11 #include "GrContext.h"
35 static void test_getConstantColorComponents(skiatest::Reporter* reporter, GrContext* grContext) {
101 SkAutoTUnref<GrEffectRef> grEffect(cf->asNewEffect(grContext));
115 GrContext* grContext = factory->get(glType);
116 if (NULL == grContext) {
120 test_getConstantColorComponents(reporter, grContext);
BlurTest.cpp 282 GrContext* grContext = factory->get(GrContextFactory::kNative_GLContextType);
283 if (NULL == grContext) {
294 SkAutoTUnref<GrTexture> texture(grContext->createUncachedTexture(desc, NULL, 0));
295 SkAutoTUnref<SkGpuDevice> device(SkNEW_ARGS(SkGpuDevice, (grContext, texture.get())));
  /external/chromium_org/third_party/WebKit/public/platform/
WebGraphicsContext3DProvider.h 36 class GrContext;
47 virtual GrContext* grContext() = 0;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
AcceleratedImageBufferSurface.cpp 51 GrContext* grContext = m_contextProvider->grContext();
52 if (!grContext)
57 m_surface = adoptPtr(SkSurface::NewScratchRenderTarget(grContext, info, msaaSampleCount));
WebGLImageBufferSurface.cpp 49 GrContext* gr = m_contextProvider->grContext();
  /external/chromium_org/content/renderer/
webgraphicscontext3d_provider_impl.cc 21 GrContext* WebGraphicsContext3DProviderImpl::grContext() {
22 return provider_->GrContext();
webgraphicscontext3d_provider_impl.h 30 virtual GrContext* grContext() OVERRIDE;
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_GeneralDecoder.h 127 CJBig2_Image *decode(CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *grContext);
129 CJBig2_Image *decode_Template0_unopt(CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *grContext);
131 CJBig2_Image *decode_Template0_opt(CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *grContext);
133 CJBig2_Image *decode_Template1_unopt(CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *grContext);
135 CJBig2_Image *decode_Template1_opt(CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *grContext);
137 CJBig2_Image *decode_V1(CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *grContext);
164 CJBig2_Image *decode_Huffman(CJBig2_BitStream *pStream, JBig2ArithCtx *grContext);
166 CJBig2_Image *decode_Arith(CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *grContext,
203 CJBig2_SymbolDict *decode_Arith(CJBig2_ArithDecoder *pArithDecoder, JBig2ArithCtx *gbContext, JBig2ArithCtx *grContext);
205 CJBig2_SymbolDict *decode_Huffman(CJBig2_BitStream *pStream, JBig2ArithCtx *gbContext, JBig2ArithCtx *grContext, IFX_Pause* pPause);
    [all...]
JBig2_Context.cpp 614 JBig2ArithCtx *gbContext = NULL, *grContext = NULL;
777 grContext = (JBig2ArithCtx*)m_pModule->JBig2_Malloc2(sizeof(JBig2ArithCtx), dwTemp);
778 JBIG2_memcpy(grContext, pLRSeg->m_Result.sd->m_grContext, sizeof(JBig2ArithCtx)*dwTemp);
789 grContext = (JBig2ArithCtx*)m_pModule->JBig2_Malloc2(sizeof(JBig2ArithCtx), dwTemp);
790 JBIG2_memset(grContext, 0, sizeof(JBig2ArithCtx)*dwTemp);
796 pSegment->m_Result.sd = pSymbolDictDecoder->decode_Arith(pArithDecoder, gbContext, grContext);
805 pSegment->m_Result.sd = pSymbolDictDecoder->decode_Huffman(m_pStream, gbContext, grContext, pPause);
818 pSegment->m_Result.sd->m_grContext = grContext;
847 if(grContext) {
848 m_pModule->JBig2_Free(grContext);
    [all...]
JBig2_GeneralDecoder.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Canvas2DLayerBridge.cpp 30 #include "GrContext.h"
52 static PassRefPtr<SkSurface> createSkSurface(GrContext* gr, const IntSize& size, int msaaSampleCount = 0)
67 RefPtr<SkSurface> surface(createSkSurface(contextProvider->grContext(), size, msaaSampleCount));
363 // re-entry via mailboxReleased from operating on defunct GrContext objects.
373 RefPtr<SkSurface> surface(createSkSurface(m_contextProvider->grContext(), size, m_msaaSampleCount));
434 GrContext* grContext = m_contextProvider->grContext();
435 if (!grContext)
462 grContext->resetContext(kTextureBinding_GrGLBackendState)
    [all...]
Canvas2DLayerBridgeTest.cpp 67 GrContext* grContext()
Canvas2DLayerManagerTest.cpp 56 GrContext* grContext()
ImageBuffer.cpp 36 #include "GrContext.h"
211 // Undo grContext texture binding changes introduced in this function
212 provider->grContext()->resetContext(kTextureBinding_GrGLBackendState);
  /external/chromium_org/third_party/skia/samplecode/
SampleApp.cpp 40 #include "GrContext.h"
43 class GrContext;
242 fCurContext = GrContext::Create(kOpenGL_GrBackend, (GrBackendContext) fCurIntf);
331 virtual GrContext* getGrContext() {
350 GrContext* fCurContext;
    [all...]
  /external/skia/samplecode/
SampleApp.cpp 39 #include "GrContext.h"
42 class GrContext;
241 fCurContext = GrContext::Create(kOpenGL_GrBackend, (GrBackendContext) fCurIntf);
333 virtual GrContext* getGrContext() {
352 GrContext* fCurContext;
    [all...]
  /external/chromium_org/content/renderer/media/android/
webmediaplayer_android.cc 542 bool WebMediaPlayerAndroid::EnsureTextureBackedSkBitmap(GrContext* gr,
601 if (!EnsureTextureBackedSkBitmap(provider->grContext(), bitmap_,
    [all...]

Completed in 434 milliseconds