OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GrBatch
(Results
1 - 2
of
2
) sorted by null
/external/skia/src/gpu/batches/
GrBatch.cpp
8
#include "
GrBatch
.h"
37
int32_t
GrBatch
::gCurrBatchClassID =
GrBatch
::kIllegalBatchID;
39
GrBATCH_SPEW(int32_t
GrBatch
::gCurrBatchUniqueID =
GrBatch
::kIllegalBatchID;)
41
void*
GrBatch
::operator new(size_t size) {
45
void
GrBatch
::operator delete(void* target) {
49
GrBatch
::
GrBatch
(uint32_t classID)
58
GrBatch
::~GrBatch() {
[
all
...]
GrBatch.h
22
*
GrBatch
is the base class for all Ganesh deferred geometry generators. To facilitate
24
* captures the arguments to the draw and then generates the geometry on demand. This gives
GrBatch
33
* the draw, ie whether or not the
GrBatch
is allowed to tweak alpha for coverage, then this
34
* information will be communicated to the
GrBatch
prior to geometry generation.
56
class
GrBatch
: public GrNonAtomicRef<
GrBatch
> {
58
GrBatch
(uint32_t classID);
59
virtual ~
GrBatch
();
63
bool combineIfPossible(
GrBatch
* that, const GrCaps& caps) {
84
* Helper for safely down-casting to a
GrBatch
subclas
[
all
...]
Completed in 1211 milliseconds