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

  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_GrrdProc.h 20 JBig2ArithCtx* grContext);
23 JBig2ArithCtx* grContext);
26 JBig2ArithCtx* grContext);
29 JBig2ArithCtx* grContext);
32 JBig2ArithCtx* grContext);
JBig2_SddProc.h 25 std::vector<JBig2ArithCtx>* grContext);
29 std::vector<JBig2ArithCtx>* grContext,
JBig2_SymbolDict.h 33 const std::vector<JBig2ArithCtx>& GrContext() const { return m_grContext; }
38 void SetGrContext(const std::vector<JBig2ArithCtx>& grContext) {
39 m_grContext = grContext;
JBig2_TrdProc.h 44 JBig2ArithCtx* grContext);
47 JBig2ArithCtx* grContext,
JBig2_GrrdProc.cpp 16 JBig2ArithCtx* grContext) {
24 return decode_Template0_opt(pArithDecoder, grContext);
26 return decode_Template0_unopt(pArithDecoder, grContext);
30 return decode_Template1_opt(pArithDecoder, grContext);
31 return decode_Template1_unopt(pArithDecoder, grContext);
36 JBig2ArithCtx* grContext) {
45 SLTP = pArithDecoder->DECODE(&grContext[0x0010]);
74 bVal = pArithDecoder->DECODE(&grContext[CONTEXT]);
126 bVal = pArithDecoder->DECODE(&grContext[CONTEXT]);
151 JBig2ArithCtx* grContext) {
    [all...]
JBig2_TrdProc.cpp 17 JBig2ArithCtx* grContext) {
143 IBI = pGRRD->decode(pArithDecoder.get(), grContext);
216 JBig2ArithCtx* grContext,
328 IBI = pGRRD->decode(pArithDecoder, grContext);
JBig2_Context.cpp 583 std::vector<JBig2ArithCtx> grContext;
591 grContext = pLRSeg->m_Result.sd->GrContext();
592 if (grContext.size() != grContextSize)
599 grContext.resize(grContextSize);
624 pArithDecoder.get(), &gbContext, &grContext);
632 m_pStream.get(), &gbContext, &grContext, pPause);
651 pSegment->m_Result.sd->SetGrContext(grContext);
    [all...]
JBig2_SddProc.cpp 25 std::vector<JBig2ArithCtx>* grContext) {
195 BS = pDecoder->decode_Arith(pArithDecoder, grContext->data(), &ids);
230 BS = pGRRD->decode(pArithDecoder, grContext->data());
291 std::vector<JBig2ArithCtx>* grContext,
441 BS = pDecoder->decode_Huffman(pStream, grContext->data());
513 BS = pGRRD->decode(pArithDecoder.get(), grContext->data());
  /external/skia/src/gpu/
GrContextFactory.h 11 #include "GrContext.h"
20 * GL context and a GrContext that uses it. The GL/Gr contexts persist until the
116 ContextInfo(GrContext* grContext, SkGLContext* glContext)
117 : fGrContext(grContext), fGLContext(glContext) { }
118 GrContext* fGrContext;
129 * Get a GrContext initialized with a type of GL context. It also makes the GL context current.
131 GrContext* get(GLContextType type,
142 GrContext* fGrContext;
  /external/skia/experimental/fiddle/
fiddle_main.cpp 74 static GrContext* create_mesa_grcontext() {
77 return backend ? GrContext::Create(kOpenGL_GrBackend, backend) : nullptr;
108 SkAutoTUnref<GrContext> grContext(create_mesa_grcontext());
109 if (!grContext) {
110 fputs("Unable to get Mesa GrContext.\n", stderr);
114 grContext,
  /external/skia/platform_tools/android/apps/canvasproof/src/main/jni/
org_skia_canvasproof_GaneshPictureRenderer.cpp 10 #include "GrContext.h"
21 static void render_picture(GrContext* grContext,
26 SkASSERT(grContext);
42 grContext, desc, &surfaceProps));
57 SkAutoTUnref<GrContext> fGrContext;
61 fGrContext.reset(GrContext::Create(kOpenGL_GrBackend, 0));
63 SkDebugf(TAG "GrContext::Create - failed\n");
  /external/skia/samplecode/
SampleAnimatedText.cpp 22 #include "GrContext.h"
107 GrContext* grContext = canvas->getGrContext();
108 if (grContext) {
109 GrTexture* tex = grContext->getFontAtlasTexture(GrMaskFormat::kA8_GrMaskFormat);
SampleApp.cpp 39 #include "GrContext.h"
42 class GrContext;
254 fCurContext = GrContext::Create(kOpenGL_GrBackend, (GrBackendContext) fCurIntf);
316 GrContext::kFlushWrites_PixelOp);
335 GrContext* getGrContext() override {
354 GrContext* fCurContext;
    [all...]
  /external/skia/cmake/
example.cpp 12 #include "../include/gpu/GrContext.h"
55 std::shared_ptr<GrContext> grContext = adopt(GrContext::Create(kOpenGL_GrBackend, 0));
56 return adopt(SkSurface::NewRenderTarget(grContext.get(),
  /external/skia/include/views/
SkWindow.h 25 class GrContext;
96 const GrGLInterface* , GrContext* grContext);
  /external/skia/example/
SkiaSDLExample.cpp 9 #include "GrContext.h"
185 // setup GrContext
193 SkAutoTUnref<GrContext> grContext(GrContext::Create(kOpenGL_GrBackend,
195 SkASSERT(grContext);
210 renderTarget(grContext->textureProvider()->wrapBackendRenderTarget(desc));
  /external/skia/src/views/
SkWindow.cpp 319 #include "GrContext.h"
325 const GrGLInterface* interface, GrContext* grContext) {
336 return grContext->textureProvider()->wrapBackendRenderTarget(desc);
  /external/skia/tests/
BlurTest.cpp 279 static bool gpu_blur_path(GrContext* context, const SkPath& path,
289 SkAutoTUnref<GrTexture> texture(grContext->createTexture(desc, false, nullptr, 0));
290 SkAutoTUnref<SkGpuDevice> device(new SkGpuDevice (grContext, texture.get()));

Completed in 170 milliseconds