Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: dm/DMSrcSink.cpp

Issue 1490113005: Add config options to run different GPU APIs to dm and nanobench (Closed) Base URL: https://skia.googlesource.com/skia.git@commandbuffer-as-api-03-context-factory-glcontext-type
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « dm/DMSrcSink.h ('k') | gyp/flags.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "DMSrcSink.h" 8 #include "DMSrcSink.h"
9 #include "SamplePipeControllers.h" 9 #include "SamplePipeControllers.h"
10 #include "SkAndroidCodec.h" 10 #include "SkAndroidCodec.h"
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 SkAutoTDelete<SkCanvas> canvas(SkCreateNullCanvas()); 783 SkAutoTDelete<SkCanvas> canvas(SkCreateNullCanvas());
784 return src.draw(canvas); 784 return src.draw(canvas);
785 } 785 }
786 786
787 /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~*/ 787 /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~*/
788 788
789 DEFINE_bool(gpuStats, false, "Append GPU stats to the log for each GPU task?"); 789 DEFINE_bool(gpuStats, false, "Append GPU stats to the log for each GPU task?");
790 790
791 GPUSink::GPUSink(GrContextFactory::GLContextType ct, 791 GPUSink::GPUSink(GrContextFactory::GLContextType ct,
792 GrContextFactory::GLContextOptions options, 792 GrContextFactory::GLContextOptions options,
793 GrGLStandard gpuAPI,
794 int samples, 793 int samples,
795 bool diText, 794 bool diText,
796 bool threaded) 795 bool threaded)
797 : fContextType(ct) 796 : fContextType(ct)
798 , fContextOptions(options) 797 , fContextOptions(options)
799 , fGpuAPI(gpuAPI)
800 , fSampleCount(samples) 798 , fSampleCount(samples)
801 , fUseDIText(diText) 799 , fUseDIText(diText)
802 , fThreaded(threaded) {} 800 , fThreaded(threaded) {}
803 801
804 int GPUSink::enclave() const { 802 int GPUSink::enclave() const {
805 return fThreaded ? kAnyThread_Enclave : kGPU_Enclave; 803 return fThreaded ? kAnyThread_Enclave : kGPU_Enclave;
806 } 804 }
807 805
808 void PreAbandonGpuContextErrorHandler(SkError, void*) {} 806 void PreAbandonGpuContextErrorHandler(SkError, void*) {}
809 807
810 DEFINE_bool(imm, false, "Run gpu configs in immediate mode."); 808 DEFINE_bool(imm, false, "Run gpu configs in immediate mode.");
811 DEFINE_bool(batchClip, false, "Clip each GrBatch to its device bounds for testin g."); 809 DEFINE_bool(batchClip, false, "Clip each GrBatch to its device bounds for testin g.");
812 DEFINE_bool(batchBounds, false, "Draw a wireframe bounds of each GrBatch."); 810 DEFINE_bool(batchBounds, false, "Draw a wireframe bounds of each GrBatch.");
813 DEFINE_int32(batchLookback, -1, "Maximum GrBatch lookback for combining, negativ e means default."); 811 DEFINE_int32(batchLookback, -1, "Maximum GrBatch lookback for combining, negativ e means default.");
814 812
815 Error GPUSink::draw(const Src& src, SkBitmap* dst, SkWStream*, SkString* log) co nst { 813 Error GPUSink::draw(const Src& src, SkBitmap* dst, SkWStream*, SkString* log) co nst {
816 GrContextOptions grOptions; 814 GrContextOptions grOptions;
817 grOptions.fImmediateMode = FLAGS_imm; 815 grOptions.fImmediateMode = FLAGS_imm;
818 grOptions.fClipBatchToBounds = FLAGS_batchClip; 816 grOptions.fClipBatchToBounds = FLAGS_batchClip;
819 grOptions.fDrawBatchBounds = FLAGS_batchBounds; 817 grOptions.fDrawBatchBounds = FLAGS_batchBounds;
820 grOptions.fMaxBatchLookback = FLAGS_batchLookback; 818 grOptions.fMaxBatchLookback = FLAGS_batchLookback;
821 819
822 src.modifyGrContextOptions(&grOptions); 820 src.modifyGrContextOptions(&grOptions);
823 821
824 GrContextFactory factory(grOptions); 822 GrContextFactory factory(grOptions);
825 const SkISize size = src.size(); 823 const SkISize size = src.size();
826 const SkImageInfo info = 824 const SkImageInfo info =
827 SkImageInfo::Make(size.width(), size.height(), kN32_SkColorType, kPremul _SkAlphaType); 825 SkImageInfo::Make(size.width(), size.height(), kN32_SkColorType, kPremul _SkAlphaType);
828 SkAutoTUnref<SkSurface> surface( 826 SkAutoTUnref<SkSurface> surface(
829 NewGpuSurface(&factory, fContextType, fContextOptions, fGpuAPI, info , fSampleCount, 827 NewGpuSurface(&factory, fContextType, fContextOptions, info, fSample Count, fUseDIText));
830 fUseDIText));
831 if (!surface) { 828 if (!surface) {
832 return "Could not create a surface."; 829 return "Could not create a surface.";
833 } 830 }
834 if (FLAGS_preAbandonGpuContext) { 831 if (FLAGS_preAbandonGpuContext) {
835 SkSetErrorCallback(&PreAbandonGpuContextErrorHandler, nullptr); 832 SkSetErrorCallback(&PreAbandonGpuContextErrorHandler, nullptr);
836 factory.abandonContexts(); 833 factory.abandonContexts();
837 } 834 }
838 SkCanvas* canvas = surface->getCanvas(); 835 SkCanvas* canvas = surface->getCanvas();
839 Error err = src.draw(canvas); 836 Error err = src.draw(canvas);
840 if (!err.isEmpty()) { 837 if (!err.isEmpty()) {
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
1264 skr.visit<void>(i, drawsAsSingletonPictures); 1261 skr.visit<void>(i, drawsAsSingletonPictures);
1265 } 1262 }
1266 SkAutoTUnref<SkPicture> macroPic(macroRec.endRecordingAsPicture()); 1263 SkAutoTUnref<SkPicture> macroPic(macroRec.endRecordingAsPicture());
1267 1264
1268 canvas->drawPicture(macroPic); 1265 canvas->drawPicture(macroPic);
1269 return ""; 1266 return "";
1270 }); 1267 });
1271 } 1268 }
1272 1269
1273 } // namespace DM 1270 } // namespace DM
OLDNEW
« no previous file with comments | « dm/DMSrcSink.h ('k') | gyp/flags.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698