OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TextureRef
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/gpu/command_buffer/service/
texture_manager.cc
132
void Texture::AddTextureRef(
TextureRef
* ref) {
141
void Texture::RemoveTextureRef(
TextureRef
* ref, bool have_context) {
841
TextureRef
::
TextureRef
(TextureManager* manager,
854
scoped_refptr<
TextureRef
>
TextureRef
::Create(TextureManager* manager,
857
return new
TextureRef
(manager, client_id, new Texture(service_id));
860
TextureRef
::~
TextureRef
() {
921
scoped_refptr<
TextureRef
>
[
all
...]
texture_manager.h
38
class
TextureRef
;
42
// jointly owned by possibly multiple
TextureRef
.
178
friend class
TextureRef
;
182
void AddTextureRef(
TextureRef
* ref);
183
void RemoveTextureRef(
TextureRef
* ref, bool have_context);
342
typedef std::set<
TextureRef
*> RefSet;
345
// The single
TextureRef
that accounts for memory for this texture. Must be
347
TextureRef
* memory_tracking_ref_;
408
// Multiple
TextureRef
can point to the same texture with cross-context sharing.
410
// Note: for stream textures, the
TextureRef
that created the stream texture i
[
all
...]
Completed in 49 milliseconds