OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:graphics_2d_context_
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/native_client_sdk/src/examples/api/gamepad/
gamepad.cc
63
bool IsContextValid() const { return
graphics_2d_context_
!= NULL; }
66
pp::Graphics2D*
graphics_2d_context_
;
member in class:GamepadInstance
75
graphics_2d_context_
(NULL),
102
if (
graphics_2d_context_
!= NULL) {
105
graphics_2d_context_
->size(),
170
graphics_2d_context_
= new pp::Graphics2D(this, size, false);
171
if (!BindGraphics(*
graphics_2d_context_
)) {
179
delete
graphics_2d_context_
;
180
graphics_2d_context_
= NULL;
188
graphics_2d_context_
->PaintImageData(*pixel_buffer_, pp::Point())
[
all
...]
/external/chromium_org/native_client_sdk/src/examples/api/var_array_buffer/
var_array_buffer.cc
92
graphics_2d_context_
.ReplaceContents(image_data);
93
graphics_2d_context_
.Flush(
116
graphics_2d_context_
=
118
BindGraphics(
graphics_2d_context_
);
158
pp::Graphics2D
graphics_2d_context_
;
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/earth/
earth.cc
276
pp::Graphics2D*
graphics_2d_context_
;
member in class:Planet
373
graphics_2d_context_
(NULL),
822
graphics_2d_context_
->PaintImageData(*image_data_, pp::Point(0, 0));
823
graphics_2d_context_
->Flush(pp::CompletionCallback(&FlushCallback, this));
853
graphics_2d_context_
= new pp::Graphics2D(this, size, false);
854
if (
graphics_2d_context_
->is_null())
856
if (!BindGraphics(*
graphics_2d_context_
))
870
delete
graphics_2d_context_
;
872
graphics_2d_context_
= NULL;
Completed in 2933 milliseconds